agno 2.0.0rc1__tar.gz → 2.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agno-2.0.1/LICENSE +201 -0
- {agno-2.0.0rc1 → agno-2.0.1}/PKG-INFO +140 -1
- agno-2.0.1/README.md +138 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/agent/agent.py +101 -140
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mongo/mongo.py +8 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/eval/accuracy.py +12 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/strategy.py +14 -14
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/knowledge.py +156 -120
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/arxiv_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/csv_reader.py +6 -77
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/docx_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/firecrawl_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/json_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/markdown_reader.py +31 -9
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/pdf_reader.py +10 -123
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/reader_factory.py +65 -72
- agno-2.0.1/agno/knowledge/reader/s3_reader.py +101 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/text_reader.py +5 -5
- agno-2.0.1/agno/knowledge/reader/url_reader.py +128 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/web_search_reader.py +6 -29
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/website_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/wikipedia_reader.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/youtube_reader.py +6 -6
- agno-2.0.1/agno/knowledge/reranker/__init__.py +9 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/utils.py +10 -10
- agno-2.0.1/agno/media.py +390 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/aws/bedrock.py +3 -7
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/base.py +50 -54
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/google/gemini.py +11 -10
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/message.py +4 -4
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/ollama/chat.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openai/chat.py +33 -14
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/response.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/app.py +40 -29
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/mcp.py +39 -59
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/router.py +547 -16
- agno-2.0.1/agno/os/routers/evals/evals.py +393 -0
- agno-2.0.1/agno/os/routers/knowledge/knowledge.py +850 -0
- agno-2.0.1/agno/os/routers/memory/memory.py +410 -0
- agno-2.0.1/agno/os/routers/metrics/metrics.py +178 -0
- agno-2.0.1/agno/os/routers/session/session.py +536 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/schema.py +55 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/agent.py +37 -28
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/base.py +9 -19
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/team.py +110 -19
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/workflow.py +41 -28
- {agno-2.0.0rc1 → agno-2.0.1}/agno/team/team.py +808 -1080
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/brightdata.py +3 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/cartesia.py +3 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/dalle.py +7 -4
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/desi_vocal.py +2 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/e2b.py +6 -6
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/eleven_labs.py +3 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/fal.py +4 -4
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/function.py +7 -7
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/giphy.py +2 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/lumalab.py +3 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/mcp.py +1 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models/azure_openai.py +2 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models/gemini.py +3 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models/groq.py +3 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models/nebius.py +2 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models_labs.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/openai.py +4 -9
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/opencv.py +3 -3
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/replicate.py +7 -7
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/events.py +5 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/gemini.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/log.py +52 -2
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/mcp.py +57 -5
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/aws_claude.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/claude.py +0 -8
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/cohere.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/watsonx.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/openai.py +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/print_response/team.py +177 -73
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/streamlit.py +27 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/lancedb/lance_db.py +82 -25
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/step.py +7 -7
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/types.py +13 -13
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/workflow.py +37 -28
- {agno-2.0.0rc1 → agno-2.0.1}/agno.egg-info/PKG-INFO +140 -1
- {agno-2.0.0rc1 → agno-2.0.1}/agno.egg-info/SOURCES.txt +1 -1
- {agno-2.0.0rc1 → agno-2.0.1}/pyproject.toml +1 -1
- agno-2.0.0rc1/LICENSE +0 -375
- agno-2.0.0rc1/agno/knowledge/reader/gcs_reader.py +0 -67
- agno-2.0.0rc1/agno/knowledge/reader/s3_reader.py +0 -171
- agno-2.0.0rc1/agno/knowledge/reader/url_reader.py +0 -84
- agno-2.0.0rc1/agno/media.py +0 -389
- agno-2.0.0rc1/agno/os/routers/evals/evals.py +0 -208
- agno-2.0.0rc1/agno/os/routers/knowledge/knowledge.py +0 -436
- agno-2.0.0rc1/agno/os/routers/memory/memory.py +0 -188
- agno-2.0.0rc1/agno/os/routers/metrics/metrics.py +0 -60
- agno-2.0.0rc1/agno/os/routers/session/session.py +0 -168
- agno-2.0.0rc1/agno/vectordb/llamaindex/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/agent/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/agent.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/api.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/evals.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/os.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/routes.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/agent.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/evals.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/os.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/response.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/team.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/schemas/workflows.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/settings.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/team.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/api/workflow.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/cloud/aws/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/cloud/aws/s3/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/cloud/aws/s3/api_client.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/cloud/aws/s3/bucket.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/cloud/aws/s3/object.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/dynamo/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/dynamo/dynamo.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/dynamo/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/dynamo/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/firestore/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/firestore/firestore.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/firestore/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/firestore/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/gcs_json/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/gcs_json/gcs_json_db.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/gcs_json/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/in_memory/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/in_memory/in_memory_db.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/in_memory/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/json/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/json/json_db.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/json/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/migrations/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/migrations/v1_to_v2.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mongo/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mongo/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mongo/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mysql/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mysql/mysql.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mysql/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/mysql/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/postgres/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/postgres/postgres.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/postgres/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/postgres/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/redis/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/redis/redis.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/redis/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/redis/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/schemas/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/schemas/evals.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/schemas/knowledge.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/schemas/memory.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/schemas/metrics.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/singlestore/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/singlestore/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/singlestore/singlestore.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/singlestore/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/sqlite/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/sqlite/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/sqlite/sqlite.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/sqlite/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/db/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/debug.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/eval/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/eval/performance.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/eval/reliability.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/eval/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/exceptions.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/integrations/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/integrations/discord/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/integrations/discord/client.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/agentic.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/document.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/fixed.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/markdown.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/recursive.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/row.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/chunking/semantic.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/content.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/document/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/document/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/aws_bedrock.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/azure_openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/cohere.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/fastembed.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/fireworks.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/google.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/huggingface.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/jina.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/langdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/mistral.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/nebius.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/ollama.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/sentence_transformer.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/together.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/embedder/voyageai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reader/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/remote_content/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/remote_content/remote_content.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reranker/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reranker/cohere.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reranker/infinity.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/reranker/sentence_transformer.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/knowledge/types.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/memory/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/memory/manager.py +0 -0
- {agno-2.0.0rc1/agno/knowledge/reranker → agno-2.0.1/agno/models}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/aimlapi/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/aimlapi/aimlapi.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/anthropic/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/anthropic/claude.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/aws/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/aws/claude.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/azure/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/azure/ai_foundry.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/azure/openai_chat.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/cerebras/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/cerebras/cerebras.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/cerebras/cerebras_openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/cohere/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/cohere/chat.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/dashscope/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/dashscope/dashscope.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/deepinfra/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/deepinfra/deepinfra.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/deepseek/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/deepseek/deepseek.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/defaults.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/fireworks/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/fireworks/fireworks.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/google/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/groq/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/groq/groq.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/huggingface/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/huggingface/huggingface.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/ibm/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/ibm/watsonx.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/internlm/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/internlm/internlm.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/langdb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/langdb/langdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/litellm/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/litellm/chat.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/litellm/litellm_openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/lmstudio/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/lmstudio/lmstudio.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/meta/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/meta/llama.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/meta/llama_openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/metrics.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/mistral/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/mistral/mistral.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/nebius/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/nebius/nebius.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/nvidia/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/nvidia/nvidia.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/ollama/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openai/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openai/like.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openai/responses.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openrouter/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/openrouter/openrouter.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/perplexity/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/perplexity/perplexity.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/portkey/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/portkey/portkey.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/sambanova/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/sambanova/sambanova.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/together/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/together/together.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/vercel/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/vercel/v0.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/vllm/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/vllm/vllm.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/xai/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/models/xai/xai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/auth.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/config.py +0 -0
- {agno-2.0.0rc1/agno/models → agno-2.0.1/agno/os/interfaces}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/agui/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/agui/agui.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/agui/router.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/agui/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/slack/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/slack/router.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/slack/security.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/slack/slack.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/whatsapp/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/whatsapp/router.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/whatsapp/security.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/interfaces/whatsapp/whatsapp.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/evals/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/evals/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/evals/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/knowledge/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/knowledge/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/memory/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/memory/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/metrics/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/metrics/schemas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/routers/session/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/settings.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/os/utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/py.typed +0 -0
- {agno-2.0.0rc1/agno/os/interfaces → agno-2.0.1/agno/reasoning}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/azure_ai_foundry.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/deepseek.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/default.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/groq.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/helpers.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/ollama.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/openai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/reasoning/step.py +0 -0
- {agno-2.0.0rc1/agno/reasoning → agno-2.0.1/agno/run}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/cancel.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/run/messages.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/session/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/session/agent.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/session/summary.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/session/team.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/session/workflow.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/team/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/agentql.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/airflow.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/api.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/apify.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/arxiv.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/aws_lambda.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/aws_ses.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/baidusearch.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/bitbucket.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/brandfetch.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/bravesearch.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/browserbase.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/calcom.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/calculator.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/clickup.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/confluence.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/crawl4ai.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/csv_toolkit.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/daytona.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/decorator.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/discord.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/docker.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/duckdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/duckduckgo.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/email.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/evm.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/exa.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/file.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/financial_datasets.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/firecrawl.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/github.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/gmail.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/google_bigquery.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/google_maps.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/googlecalendar.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/googlesearch.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/googlesheets.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/hackernews.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/jina.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/jira.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/knowledge.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/linear.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/linkup.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/local_file_system.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/mem0.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/memori.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/mlx_transcribe.py +0 -0
- {agno-2.0.0rc1/agno/run → agno-2.0.1/agno/tools/models}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/models/morph.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/moviepy_video.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/neo4j.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/newspaper.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/newspaper4k.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/openbb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/openweather.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/oxylabs.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/pandas.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/postgres.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/pubmed.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/python.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/reasoning.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/reddit.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/resend.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/scrapegraph.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/searxng.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/serpapi.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/serper.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/shell.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/slack.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/sleep.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/spider.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/sql.py +0 -0
- {agno-2.0.0rc1/agno/tools/models → agno-2.0.1/agno/tools/streamlit}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/streamlit/components.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/tavily.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/telegram.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/todoist.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/tool_registry.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/toolkit.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/trafilatura.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/trello.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/twilio.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/user_control_flow.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/valyu.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/visualization.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/webbrowser.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/webex.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/website.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/webtools.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/whatsapp.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/wikipedia.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/x.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/yfinance.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/youtube.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/zendesk.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/zep.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/tools/zoom.py +0 -0
- {agno-2.0.0rc1/agno/tools/streamlit → agno-2.0.1/agno/utils}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/audio.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/certs.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/code_execution.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/common.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/dttm.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/enum.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/env.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/format_str.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/functions.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/http.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/json_schema.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/knowledge.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/location.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/media.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/merge_dict.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/message.py +0 -0
- {agno-2.0.0rc1/agno/utils → agno-2.0.1/agno/utils/models}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/ai_foundry.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/llama.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/mistral.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/openai_responses.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/models/schema_utils.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/pickle.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/pprint.py +0 -0
- {agno-2.0.0rc1/agno/utils/models → agno-2.0.1/agno/utils/print_response}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/print_response/agent.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/print_response/workflow.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/prompts.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/reasoning.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/response.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/response_iterator.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/safe_formatter.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/shell.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/string.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/team.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/timer.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/tools.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/web.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/whatsapp.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/utils/yaml_io.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/base.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/cassandra/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/cassandra/cassandra.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/cassandra/extra_param_mixin.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/cassandra/index.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/chroma/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/chroma/chromadb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/clickhouse/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/clickhouse/clickhousedb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/clickhouse/index.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/couchbase/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/couchbase/couchbase.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/distance.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/lancedb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/langchaindb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/langchaindb/langchaindb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/lightrag/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/lightrag/lightrag.py +0 -0
- {agno-2.0.0rc1/agno/utils/print_response → agno-2.0.1/agno/vectordb/llamaindex}/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/llamaindex/llamaindexdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/milvus/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/milvus/milvus.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/mongodb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/mongodb/mongodb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/pgvector/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/pgvector/index.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/pgvector/pgvector.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/pineconedb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/pineconedb/pineconedb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/qdrant/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/qdrant/qdrant.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/search.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/singlestore/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/singlestore/index.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/singlestore/singlestore.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/surrealdb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/surrealdb/surrealdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/upstashdb/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/upstashdb/upstashdb.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/weaviate/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/weaviate/index.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/vectordb/weaviate/weaviate.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/__init__.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/condition.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/loop.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/parallel.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/router.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno/workflow/steps.py +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno.egg-info/dependency_links.txt +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno.egg-info/requires.txt +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/agno.egg-info/top_level.txt +0 -0
- {agno-2.0.0rc1 → agno-2.0.1}/setup.cfg +0 -0
agno-2.0.1/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agno
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: Agno: a lightweight library for building Multi-Agent Systems
|
|
5
5
|
Author-email: Ashpreet Bedi <ashpreet@agno.com>
|
|
6
6
|
Project-URL: homepage, https://agno.com
|
|
@@ -353,3 +353,142 @@ Requires-Dist: agno[agui]; extra == "tests"
|
|
|
353
353
|
Requires-Dist: twine; extra == "tests"
|
|
354
354
|
Requires-Dist: build; extra == "tests"
|
|
355
355
|
Dynamic: license-file
|
|
356
|
+
|
|
357
|
+
<div align="center" id="top">
|
|
358
|
+
<a href="https://docs.agno.com">
|
|
359
|
+
<picture>
|
|
360
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-dark.svg">
|
|
361
|
+
<source media="(prefers-color-scheme: light)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-light.svg">
|
|
362
|
+
<img src="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-light.svg" alt="Agno">
|
|
363
|
+
</picture>
|
|
364
|
+
</a>
|
|
365
|
+
</div>
|
|
366
|
+
<div align="center">
|
|
367
|
+
<a href="https://docs.agno.com">📚 Documentation</a> |
|
|
368
|
+
<a href="https://docs.agno.com/examples/introduction">💡 Examples</a> |
|
|
369
|
+
<a href="https://github.com/agno-agi/agno/stargazers">🌟 Star Us</a>
|
|
370
|
+
</div>
|
|
371
|
+
|
|
372
|
+
## What is Agno?
|
|
373
|
+
|
|
374
|
+
[Agno](https://docs.agno.com) is a high-performance runtime for multi-agent systems. Use it to build, run and manage secure multi-agent systems in your cloud.
|
|
375
|
+
|
|
376
|
+
Agno gives you the fastest framework for building agents with session management, memory, knowledge, human in the loop and MCP support. You can put agents together as an autonomous multi-agent team, or build step-based agentic workflows for full control over complex multi-step processes.
|
|
377
|
+
|
|
378
|
+
In 10 lines of code, we can build an Agent that will fetch the top stories from HackerNews and summarize them.
|
|
379
|
+
|
|
380
|
+
```python hackernews_agent.py
|
|
381
|
+
from agno.agent import Agent
|
|
382
|
+
from agno.models.anthropic import Claude
|
|
383
|
+
from agno.tools.hackernews import HackerNewsTools
|
|
384
|
+
|
|
385
|
+
agent = Agent(
|
|
386
|
+
model=Claude(id="claude-sonnet-4-0"),
|
|
387
|
+
tools=[HackerNewsTools()],
|
|
388
|
+
markdown=True,
|
|
389
|
+
)
|
|
390
|
+
agent.print_response("Summarize the top 5 stories on hackernews", stream=True)
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
But the real advantage of Agno is its [AgentOS](https://docs.agno.com/agent-os/introduction) runtime:
|
|
394
|
+
|
|
395
|
+
1. You get a pre-built FastAPI app for running your agentic system, meaning you start building your product on day one. This is a remarkable advantage over other solutions or rolling your own.
|
|
396
|
+
2. You also get a control plane which connects directly to your AgentOS for testing, monitoring and managing your system. This gives you unmatched visibility and control over your system.
|
|
397
|
+
3. Your AgentOS runs in your cloud and you get complete data privacy because no data ever leaves your system. This is incredible for security conscious enterprises that can't send traces to external services.
|
|
398
|
+
|
|
399
|
+
For organizations building agents, Agno provides the complete solution. You get the fastest framework for building agents (speed of development and execution), a pre-built FastAPI app that lets you build your product on day one, and a control plane for managing your system.
|
|
400
|
+
|
|
401
|
+
We bring a novel architecture that no other framework provides, your AgentOS runs securely in your cloud, and the control plane connects directly to it from your browser. You don't need to send data to external services or pay retention costs, you get complete privacy and control.
|
|
402
|
+
|
|
403
|
+
## Getting started
|
|
404
|
+
|
|
405
|
+
If you're new to Agno, follow our [quickstart](https://docs.agno.com/introduction/quickstart) to build your first Agent and run it using the AgentOS.
|
|
406
|
+
|
|
407
|
+
After that, checkout the [examples gallery](https://docs.agno.com/examples/introduction) and build real-world applications with Agno.
|
|
408
|
+
|
|
409
|
+
## Documentation, Community & More examples
|
|
410
|
+
|
|
411
|
+
- Docs: <a href="https://docs.agno.com" target="_blank" rel="noopener noreferrer">docs.agno.com</a>
|
|
412
|
+
- Cookbook: <a href="https://github.com/agno-agi/agno/tree/main/cookbook" target="_blank" rel="noopener noreferrer">Cookbook</a>
|
|
413
|
+
- Community forum: <a href="https://community.agno.com/" target="_blank" rel="noopener noreferrer">community.agno.com</a>
|
|
414
|
+
- Discord: <a href="https://discord.gg/4MtYHHrgA8" target="_blank" rel="noopener noreferrer">discord</a>
|
|
415
|
+
|
|
416
|
+
## Setup your coding agent to use Agno
|
|
417
|
+
|
|
418
|
+
For LLMs and AI assistants to understand and navigate Agno's documentation, we provide an [llms.txt](https://docs.agno.com/llms.txt) or [llms-full.txt](https://docs.agno.com/llms-full.txt) file.
|
|
419
|
+
|
|
420
|
+
This file is built for AI systems to efficiently parse and reference our documentation.
|
|
421
|
+
|
|
422
|
+
### IDE Integration
|
|
423
|
+
|
|
424
|
+
When building Agno agents, using Agno documentation as a source in your IDE is a great way to speed up your development. Here's how to integrate with Cursor:
|
|
425
|
+
|
|
426
|
+
1. In Cursor, go to the "Cursor Settings" menu.
|
|
427
|
+
2. Find the "Indexing & Docs" section.
|
|
428
|
+
3. Add `https://docs.agno.com/llms-full.txt` to the list of documentation URLs.
|
|
429
|
+
4. Save the changes.
|
|
430
|
+
|
|
431
|
+
Now, Cursor will have access to the Agno documentation. You can do the same with other IDEs like VSCode, Windsurf etc.
|
|
432
|
+
|
|
433
|
+
## Performance
|
|
434
|
+
|
|
435
|
+
At Agno, we're obsessed with performance. Why? because even simple AI workflows can spawn thousands of Agents. Scale that to a modest number of users and performance becomes a bottleneck. Agno is designed for building highly performant agentic systems:
|
|
436
|
+
|
|
437
|
+
- Agent instantiation: ~3μs on average
|
|
438
|
+
- Memory footprint: ~6.5Kib on average
|
|
439
|
+
|
|
440
|
+
> Tested on an Apple M4 Mackbook Pro.
|
|
441
|
+
|
|
442
|
+
While an Agent's run-time is bottlenecked by inference, we must do everything possible to minimize execution time, reduce memory usage, and parallelize tool calls. These numbers may seem trivial at first, but our experience shows that they add up even at a reasonably small scale.
|
|
443
|
+
|
|
444
|
+
### Instantiation time
|
|
445
|
+
|
|
446
|
+
Let's measure the time it takes for an Agent with 1 tool to start up. We'll run the evaluation 1000 times to get a baseline measurement.
|
|
447
|
+
|
|
448
|
+
You should run the evaluation yourself on your own machine, please, do not take these results at face value.
|
|
449
|
+
|
|
450
|
+
```shell
|
|
451
|
+
# Setup virtual environment
|
|
452
|
+
./scripts/perf_setup.sh
|
|
453
|
+
source .venvs/perfenv/bin/activate
|
|
454
|
+
# OR Install dependencies manually
|
|
455
|
+
# pip install openai agno langgraph langchain_openai
|
|
456
|
+
|
|
457
|
+
# Agno
|
|
458
|
+
python evals/performance/instantiation_with_tool.py
|
|
459
|
+
|
|
460
|
+
# LangGraph
|
|
461
|
+
python evals/performance/other/langgraph_instantiation.py
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
> The following evaluation is run on an Apple M4 Mackbook Pro. It also runs as a Github action on this repo.
|
|
465
|
+
|
|
466
|
+
LangGraph is on the right, **let's start it first and give it a head start**.
|
|
467
|
+
|
|
468
|
+
Agno is on the left, notice how it finishes before LangGraph gets 1/2 way through the runtime measurement, and hasn't even started the memory measurement. That's how fast Agno is.
|
|
469
|
+
|
|
470
|
+
https://github.com/user-attachments/assets/ba466d45-75dd-45ac-917b-0a56c5742e23
|
|
471
|
+
|
|
472
|
+
### Memory usage
|
|
473
|
+
|
|
474
|
+
To measure memory usage, we use the `tracemalloc` library. We first calculate a baseline memory usage by running an empty function, then run the Agent 1000x times and calculate the difference. This gives a (reasonably) isolated measurement of the memory usage of the Agent.
|
|
475
|
+
|
|
476
|
+
We recommend running the evaluation yourself on your own machine, and digging into the code to see how it works. If we've made a mistake, please let us know.
|
|
477
|
+
|
|
478
|
+
### Conclusion
|
|
479
|
+
|
|
480
|
+
Agno agents are designed for performance and while we do share some benchmarks against other frameworks, we should be mindful that accuracy and reliability are more important than speed.
|
|
481
|
+
|
|
482
|
+
Given that each framework is different and we won't be able to tune their performance like we do with Agno, for future benchmarks we'll only be comparing against ourselves.
|
|
483
|
+
|
|
484
|
+
## Contributions
|
|
485
|
+
|
|
486
|
+
We welcome contributions, read our [contributing guide](https://github.com/agno-agi/agno/blob/v2.0/CONTRIBUTING.md) to get started.
|
|
487
|
+
|
|
488
|
+
## Telemetry
|
|
489
|
+
|
|
490
|
+
Agno logs which model an agent used so we can prioritize updates to the most popular providers. You can disable this by setting `AGNO_TELEMETRY=false` in your environment.
|
|
491
|
+
|
|
492
|
+
<p align="left">
|
|
493
|
+
<a href="#top">⬆️ Back to Top</a>
|
|
494
|
+
</p>
|
agno-2.0.1/README.md
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
<div align="center" id="top">
|
|
2
|
+
<a href="https://docs.agno.com">
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-dark.svg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-light.svg">
|
|
6
|
+
<img src="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-light.svg" alt="Agno">
|
|
7
|
+
</picture>
|
|
8
|
+
</a>
|
|
9
|
+
</div>
|
|
10
|
+
<div align="center">
|
|
11
|
+
<a href="https://docs.agno.com">📚 Documentation</a> |
|
|
12
|
+
<a href="https://docs.agno.com/examples/introduction">💡 Examples</a> |
|
|
13
|
+
<a href="https://github.com/agno-agi/agno/stargazers">🌟 Star Us</a>
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
## What is Agno?
|
|
17
|
+
|
|
18
|
+
[Agno](https://docs.agno.com) is a high-performance runtime for multi-agent systems. Use it to build, run and manage secure multi-agent systems in your cloud.
|
|
19
|
+
|
|
20
|
+
Agno gives you the fastest framework for building agents with session management, memory, knowledge, human in the loop and MCP support. You can put agents together as an autonomous multi-agent team, or build step-based agentic workflows for full control over complex multi-step processes.
|
|
21
|
+
|
|
22
|
+
In 10 lines of code, we can build an Agent that will fetch the top stories from HackerNews and summarize them.
|
|
23
|
+
|
|
24
|
+
```python hackernews_agent.py
|
|
25
|
+
from agno.agent import Agent
|
|
26
|
+
from agno.models.anthropic import Claude
|
|
27
|
+
from agno.tools.hackernews import HackerNewsTools
|
|
28
|
+
|
|
29
|
+
agent = Agent(
|
|
30
|
+
model=Claude(id="claude-sonnet-4-0"),
|
|
31
|
+
tools=[HackerNewsTools()],
|
|
32
|
+
markdown=True,
|
|
33
|
+
)
|
|
34
|
+
agent.print_response("Summarize the top 5 stories on hackernews", stream=True)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
But the real advantage of Agno is its [AgentOS](https://docs.agno.com/agent-os/introduction) runtime:
|
|
38
|
+
|
|
39
|
+
1. You get a pre-built FastAPI app for running your agentic system, meaning you start building your product on day one. This is a remarkable advantage over other solutions or rolling your own.
|
|
40
|
+
2. You also get a control plane which connects directly to your AgentOS for testing, monitoring and managing your system. This gives you unmatched visibility and control over your system.
|
|
41
|
+
3. Your AgentOS runs in your cloud and you get complete data privacy because no data ever leaves your system. This is incredible for security conscious enterprises that can't send traces to external services.
|
|
42
|
+
|
|
43
|
+
For organizations building agents, Agno provides the complete solution. You get the fastest framework for building agents (speed of development and execution), a pre-built FastAPI app that lets you build your product on day one, and a control plane for managing your system.
|
|
44
|
+
|
|
45
|
+
We bring a novel architecture that no other framework provides, your AgentOS runs securely in your cloud, and the control plane connects directly to it from your browser. You don't need to send data to external services or pay retention costs, you get complete privacy and control.
|
|
46
|
+
|
|
47
|
+
## Getting started
|
|
48
|
+
|
|
49
|
+
If you're new to Agno, follow our [quickstart](https://docs.agno.com/introduction/quickstart) to build your first Agent and run it using the AgentOS.
|
|
50
|
+
|
|
51
|
+
After that, checkout the [examples gallery](https://docs.agno.com/examples/introduction) and build real-world applications with Agno.
|
|
52
|
+
|
|
53
|
+
## Documentation, Community & More examples
|
|
54
|
+
|
|
55
|
+
- Docs: <a href="https://docs.agno.com" target="_blank" rel="noopener noreferrer">docs.agno.com</a>
|
|
56
|
+
- Cookbook: <a href="https://github.com/agno-agi/agno/tree/main/cookbook" target="_blank" rel="noopener noreferrer">Cookbook</a>
|
|
57
|
+
- Community forum: <a href="https://community.agno.com/" target="_blank" rel="noopener noreferrer">community.agno.com</a>
|
|
58
|
+
- Discord: <a href="https://discord.gg/4MtYHHrgA8" target="_blank" rel="noopener noreferrer">discord</a>
|
|
59
|
+
|
|
60
|
+
## Setup your coding agent to use Agno
|
|
61
|
+
|
|
62
|
+
For LLMs and AI assistants to understand and navigate Agno's documentation, we provide an [llms.txt](https://docs.agno.com/llms.txt) or [llms-full.txt](https://docs.agno.com/llms-full.txt) file.
|
|
63
|
+
|
|
64
|
+
This file is built for AI systems to efficiently parse and reference our documentation.
|
|
65
|
+
|
|
66
|
+
### IDE Integration
|
|
67
|
+
|
|
68
|
+
When building Agno agents, using Agno documentation as a source in your IDE is a great way to speed up your development. Here's how to integrate with Cursor:
|
|
69
|
+
|
|
70
|
+
1. In Cursor, go to the "Cursor Settings" menu.
|
|
71
|
+
2. Find the "Indexing & Docs" section.
|
|
72
|
+
3. Add `https://docs.agno.com/llms-full.txt` to the list of documentation URLs.
|
|
73
|
+
4. Save the changes.
|
|
74
|
+
|
|
75
|
+
Now, Cursor will have access to the Agno documentation. You can do the same with other IDEs like VSCode, Windsurf etc.
|
|
76
|
+
|
|
77
|
+
## Performance
|
|
78
|
+
|
|
79
|
+
At Agno, we're obsessed with performance. Why? because even simple AI workflows can spawn thousands of Agents. Scale that to a modest number of users and performance becomes a bottleneck. Agno is designed for building highly performant agentic systems:
|
|
80
|
+
|
|
81
|
+
- Agent instantiation: ~3μs on average
|
|
82
|
+
- Memory footprint: ~6.5Kib on average
|
|
83
|
+
|
|
84
|
+
> Tested on an Apple M4 Mackbook Pro.
|
|
85
|
+
|
|
86
|
+
While an Agent's run-time is bottlenecked by inference, we must do everything possible to minimize execution time, reduce memory usage, and parallelize tool calls. These numbers may seem trivial at first, but our experience shows that they add up even at a reasonably small scale.
|
|
87
|
+
|
|
88
|
+
### Instantiation time
|
|
89
|
+
|
|
90
|
+
Let's measure the time it takes for an Agent with 1 tool to start up. We'll run the evaluation 1000 times to get a baseline measurement.
|
|
91
|
+
|
|
92
|
+
You should run the evaluation yourself on your own machine, please, do not take these results at face value.
|
|
93
|
+
|
|
94
|
+
```shell
|
|
95
|
+
# Setup virtual environment
|
|
96
|
+
./scripts/perf_setup.sh
|
|
97
|
+
source .venvs/perfenv/bin/activate
|
|
98
|
+
# OR Install dependencies manually
|
|
99
|
+
# pip install openai agno langgraph langchain_openai
|
|
100
|
+
|
|
101
|
+
# Agno
|
|
102
|
+
python evals/performance/instantiation_with_tool.py
|
|
103
|
+
|
|
104
|
+
# LangGraph
|
|
105
|
+
python evals/performance/other/langgraph_instantiation.py
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
> The following evaluation is run on an Apple M4 Mackbook Pro. It also runs as a Github action on this repo.
|
|
109
|
+
|
|
110
|
+
LangGraph is on the right, **let's start it first and give it a head start**.
|
|
111
|
+
|
|
112
|
+
Agno is on the left, notice how it finishes before LangGraph gets 1/2 way through the runtime measurement, and hasn't even started the memory measurement. That's how fast Agno is.
|
|
113
|
+
|
|
114
|
+
https://github.com/user-attachments/assets/ba466d45-75dd-45ac-917b-0a56c5742e23
|
|
115
|
+
|
|
116
|
+
### Memory usage
|
|
117
|
+
|
|
118
|
+
To measure memory usage, we use the `tracemalloc` library. We first calculate a baseline memory usage by running an empty function, then run the Agent 1000x times and calculate the difference. This gives a (reasonably) isolated measurement of the memory usage of the Agent.
|
|
119
|
+
|
|
120
|
+
We recommend running the evaluation yourself on your own machine, and digging into the code to see how it works. If we've made a mistake, please let us know.
|
|
121
|
+
|
|
122
|
+
### Conclusion
|
|
123
|
+
|
|
124
|
+
Agno agents are designed for performance and while we do share some benchmarks against other frameworks, we should be mindful that accuracy and reliability are more important than speed.
|
|
125
|
+
|
|
126
|
+
Given that each framework is different and we won't be able to tune their performance like we do with Agno, for future benchmarks we'll only be comparing against ourselves.
|
|
127
|
+
|
|
128
|
+
## Contributions
|
|
129
|
+
|
|
130
|
+
We welcome contributions, read our [contributing guide](https://github.com/agno-agi/agno/blob/v2.0/CONTRIBUTING.md) to get started.
|
|
131
|
+
|
|
132
|
+
## Telemetry
|
|
133
|
+
|
|
134
|
+
Agno logs which model an agent used so we can prioritize updates to the most popular providers. You can disable this by setting `AGNO_TELEMETRY=false` in your environment.
|
|
135
|
+
|
|
136
|
+
<p align="left">
|
|
137
|
+
<a href="#top">⬆️ Back to Top</a>
|
|
138
|
+
</p>
|