Odel
engenheiro producao ai

engenheiro producao ai

@carruda-global1PythonUpdated 2mo ago

Compliance tools for Dynamics 365, Salesforce, Oracle, SAP and Power BI integrations

Server endpointSSEProbe failed

This is the third-party server itself — Odel doesn't run it. Hitting this URL directly talks straight to the upstream server with no auth or proxying. Connect through Odel to front it with managed auth.

aion-agents

Agents Intelligence Orchestration Network Agent generated with agents-cli version 0.6.1

Project Structure

aion-agents/
├── app/         # Core agent code
│   ├── agent.py               # Main agent logic
│   ├── fast_api_app.py        # FastAPI Backend server
│   └── app_utils/             # App utilities and helpers
├── tests/                     # Unit, integration, and load tests
├── GEMINI.md                  # AI-assisted development guide
└── pyproject.toml             # Project dependencies

💡 Tip: Use Antigravity CLI for AI-assisted development - project context is pre-configured in GEMINI.md.

Requirements

Before you begin, ensure you have:

  • uv: Python package manager (used for all dependency management in this project) - Install (add packages with uv add <package>)
  • agents-cli: Agents CLI - Install with uv tool install google-agents-cli
  • Google Cloud SDK: For GCP services - Install

Quick Start

Install agents-cli and its skills if not already installed:

uvx google-agents-cli setup

Install required packages:

agents-cli install

Test the agent with a local web server:

agents-cli playground

You can also use features from the ADK CLI with uv run adk.

Commands

CommandDescription
agents-cli installInstall dependencies using uv
agents-cli playgroundLaunch local development environment
agents-cli lintRun code quality checks
agents-cli evalEvaluate agent behavior (generate, grade, analyze, and more — see agents-cli eval --help)
uv run pytest tests/unit tests/integrationRun unit and integration tests
agents-cli deployDeploy agent to Agent Runtime
agents-cli publish gemini-enterpriseRegister deployed agent to Gemini Enterprise

🛠️ Project Management

CommandWhat It Does
agents-cli scaffold enhanceAdd CI/CD pipelines and Terraform infrastructure
agents-cli infra cicdOne-command setup of entire CI/CD pipeline + infrastructure
agents-cli scaffold upgradeAuto-upgrade to latest version while preserving customizations

Development

Edit your agent logic in app/agent.py and test with agents-cli playground - it auto-reloads on save.

Deployment

gcloud config set project <your-project-id>
agents-cli deploy

To add CI/CD and Terraform, run agents-cli scaffold enhance. To set up your production infrastructure, run agents-cli infra cicd.

Observability

Built-in telemetry exports to Cloud Trace, BigQuery, and Cloud Logging.

A2A Inspector

This agent supports the A2A Protocol. Use the A2A Inspector to test interoperability. See the A2A Inspector docs for details.