agno 2.3.2__py3-none-any.whl → 2.3.3__py3-none-any.whl
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/agent/agent.py +513 -185
- agno/compression/__init__.py +3 -0
- agno/compression/manager.py +176 -0
- agno/db/dynamo/dynamo.py +11 -0
- agno/db/firestore/firestore.py +5 -1
- agno/db/gcs_json/gcs_json_db.py +5 -2
- agno/db/in_memory/in_memory_db.py +5 -2
- agno/db/json/json_db.py +5 -1
- agno/db/migrations/manager.py +4 -4
- agno/db/mongo/async_mongo.py +158 -34
- agno/db/mongo/mongo.py +6 -2
- agno/db/mysql/mysql.py +48 -54
- agno/db/postgres/async_postgres.py +61 -51
- agno/db/postgres/postgres.py +42 -50
- agno/db/redis/redis.py +5 -0
- agno/db/redis/utils.py +5 -5
- agno/db/singlestore/singlestore.py +99 -108
- agno/db/sqlite/async_sqlite.py +29 -27
- agno/db/sqlite/sqlite.py +30 -26
- agno/knowledge/reader/pdf_reader.py +2 -2
- agno/knowledge/reader/tavily_reader.py +0 -1
- agno/memory/__init__.py +14 -1
- agno/memory/manager.py +217 -4
- agno/memory/strategies/__init__.py +15 -0
- agno/memory/strategies/base.py +67 -0
- agno/memory/strategies/summarize.py +196 -0
- agno/memory/strategies/types.py +37 -0
- agno/models/anthropic/claude.py +84 -80
- agno/models/aws/bedrock.py +38 -16
- agno/models/aws/claude.py +97 -277
- agno/models/azure/ai_foundry.py +8 -4
- agno/models/base.py +101 -14
- agno/models/cerebras/cerebras.py +18 -7
- agno/models/cerebras/cerebras_openai.py +4 -2
- agno/models/cohere/chat.py +8 -4
- agno/models/google/gemini.py +578 -20
- agno/models/groq/groq.py +18 -5
- agno/models/huggingface/huggingface.py +17 -6
- agno/models/ibm/watsonx.py +16 -6
- agno/models/litellm/chat.py +17 -7
- agno/models/message.py +19 -5
- agno/models/meta/llama.py +20 -4
- agno/models/mistral/mistral.py +8 -4
- agno/models/ollama/chat.py +17 -6
- agno/models/openai/chat.py +17 -6
- agno/models/openai/responses.py +23 -9
- agno/models/vertexai/claude.py +99 -5
- agno/os/interfaces/agui/router.py +1 -0
- agno/os/interfaces/agui/utils.py +97 -57
- agno/os/router.py +16 -0
- agno/os/routers/memory/memory.py +143 -0
- agno/os/routers/memory/schemas.py +26 -0
- agno/os/schema.py +21 -6
- agno/os/utils.py +134 -10
- agno/run/base.py +2 -1
- agno/run/workflow.py +1 -1
- agno/team/team.py +565 -219
- agno/tools/mcp/mcp.py +1 -1
- agno/utils/agent.py +119 -1
- agno/utils/models/ai_foundry.py +9 -2
- agno/utils/models/claude.py +12 -5
- agno/utils/models/cohere.py +9 -2
- agno/utils/models/llama.py +9 -2
- agno/utils/models/mistral.py +4 -2
- agno/utils/print_response/agent.py +37 -2
- agno/utils/print_response/team.py +52 -0
- agno/utils/tokens.py +41 -0
- agno/workflow/types.py +2 -2
- {agno-2.3.2.dist-info → agno-2.3.3.dist-info}/METADATA +45 -40
- {agno-2.3.2.dist-info → agno-2.3.3.dist-info}/RECORD +73 -66
- {agno-2.3.2.dist-info → agno-2.3.3.dist-info}/WHEEL +0 -0
- {agno-2.3.2.dist-info → agno-2.3.3.dist-info}/licenses/LICENSE +0 -0
- {agno-2.3.2.dist-info → agno-2.3.3.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agno
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.3
|
|
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
|
|
@@ -46,17 +46,13 @@ Requires-Dist: types-pyyaml; extra == "dev"
|
|
|
46
46
|
Requires-Dist: types-aiofiles; extra == "dev"
|
|
47
47
|
Requires-Dist: fastapi; extra == "dev"
|
|
48
48
|
Requires-Dist: uvicorn; extra == "dev"
|
|
49
|
+
Requires-Dist: PyJWT; extra == "dev"
|
|
50
|
+
Requires-Dist: mcp; extra == "dev"
|
|
51
|
+
Requires-Dist: openai; extra == "dev"
|
|
49
52
|
Provides-Extra: os
|
|
50
53
|
Requires-Dist: fastapi; extra == "os"
|
|
51
54
|
Requires-Dist: uvicorn; extra == "os"
|
|
52
55
|
Requires-Dist: PyJWT; extra == "os"
|
|
53
|
-
Provides-Extra: integration-tests
|
|
54
|
-
Requires-Dist: exa_py; extra == "integration-tests"
|
|
55
|
-
Requires-Dist: ddgs; extra == "integration-tests"
|
|
56
|
-
Requires-Dist: yfinance; extra == "integration-tests"
|
|
57
|
-
Requires-Dist: sqlalchemy; extra == "integration-tests"
|
|
58
|
-
Requires-Dist: Pillow; extra == "integration-tests"
|
|
59
|
-
Requires-Dist: fastmcp; extra == "integration-tests"
|
|
60
56
|
Provides-Extra: opentelemetry
|
|
61
57
|
Requires-Dist: opentelemetry-sdk; extra == "opentelemetry"
|
|
62
58
|
Requires-Dist: opentelemetry-exporter-otlp; extra == "opentelemetry"
|
|
@@ -87,7 +83,7 @@ Requires-Dist: cohere; extra == "cohere"
|
|
|
87
83
|
Provides-Extra: infinity
|
|
88
84
|
Requires-Dist: infinity_client; extra == "infinity"
|
|
89
85
|
Provides-Extra: google
|
|
90
|
-
Requires-Dist: google-genai; extra == "google"
|
|
86
|
+
Requires-Dist: google-genai>=1.52.0; extra == "google"
|
|
91
87
|
Provides-Extra: groq
|
|
92
88
|
Requires-Dist: groq; extra == "groq"
|
|
93
89
|
Provides-Extra: ibm
|
|
@@ -134,11 +130,11 @@ Requires-Dist: exa_py; extra == "exa"
|
|
|
134
130
|
Provides-Extra: fal
|
|
135
131
|
Requires-Dist: fal_client; extra == "fal"
|
|
136
132
|
Provides-Extra: firecrawl
|
|
137
|
-
Requires-Dist: firecrawl-py; extra == "firecrawl"
|
|
133
|
+
Requires-Dist: firecrawl-py==3.4.0; extra == "firecrawl"
|
|
138
134
|
Provides-Extra: tavily
|
|
139
135
|
Requires-Dist: tavily-python; extra == "tavily"
|
|
140
136
|
Provides-Extra: crawl4ai
|
|
141
|
-
Requires-Dist: crawl4ai; extra == "crawl4ai"
|
|
137
|
+
Requires-Dist: crawl4ai>=0.6.3; extra == "crawl4ai"
|
|
142
138
|
Provides-Extra: github
|
|
143
139
|
Requires-Dist: PyGithub; extra == "github"
|
|
144
140
|
Provides-Extra: gmail
|
|
@@ -153,7 +149,7 @@ Requires-Dist: google-maps-places; extra == "googlemaps"
|
|
|
153
149
|
Provides-Extra: matplotlib
|
|
154
150
|
Requires-Dist: matplotlib; extra == "matplotlib"
|
|
155
151
|
Provides-Extra: mcp
|
|
156
|
-
Requires-Dist: mcp; extra == "mcp"
|
|
152
|
+
Requires-Dist: mcp>=1.9.2; extra == "mcp"
|
|
157
153
|
Provides-Extra: mem0
|
|
158
154
|
Requires-Dist: mem0ai; extra == "mem0"
|
|
159
155
|
Provides-Extra: memori
|
|
@@ -201,7 +197,7 @@ Requires-Dist: psycopg-binary; extra == "postgres"
|
|
|
201
197
|
Provides-Extra: async-postgres
|
|
202
198
|
Requires-Dist: asyncpg; extra == "async-postgres"
|
|
203
199
|
Provides-Extra: async-mongo
|
|
204
|
-
Requires-Dist: pymongo; extra == "async-mongo"
|
|
200
|
+
Requires-Dist: pymongo>=4.9; extra == "async-mongo"
|
|
205
201
|
Requires-Dist: motor; extra == "async-mongo"
|
|
206
202
|
Provides-Extra: sqlite
|
|
207
203
|
Requires-Dist: sqlalchemy; extra == "sqlite"
|
|
@@ -217,7 +213,7 @@ Requires-Dist: pgvector; extra == "pgvector"
|
|
|
217
213
|
Provides-Extra: chromadb
|
|
218
214
|
Requires-Dist: chromadb; extra == "chromadb"
|
|
219
215
|
Provides-Extra: lancedb
|
|
220
|
-
Requires-Dist: lancedb
|
|
216
|
+
Requires-Dist: lancedb==0.24.0; extra == "lancedb"
|
|
221
217
|
Requires-Dist: tantivy; extra == "lancedb"
|
|
222
218
|
Provides-Extra: pylance
|
|
223
219
|
Requires-Dist: pylance; extra == "pylance"
|
|
@@ -288,7 +284,6 @@ Requires-Dist: agno[cohere]; extra == "models"
|
|
|
288
284
|
Requires-Dist: agno[google]; extra == "models"
|
|
289
285
|
Requires-Dist: agno[groq]; extra == "models"
|
|
290
286
|
Requires-Dist: agno[ibm]; extra == "models"
|
|
291
|
-
Requires-Dist: agno[infinity]; extra == "models"
|
|
292
287
|
Requires-Dist: agno[litellm]; extra == "models"
|
|
293
288
|
Requires-Dist: agno[meta]; extra == "models"
|
|
294
289
|
Requires-Dist: agno[mistral]; extra == "models"
|
|
@@ -298,7 +293,6 @@ Requires-Dist: agno[portkey]; extra == "models"
|
|
|
298
293
|
Provides-Extra: tools
|
|
299
294
|
Requires-Dist: agno[apify]; extra == "tools"
|
|
300
295
|
Requires-Dist: agno[arxiv]; extra == "tools"
|
|
301
|
-
Requires-Dist: agno[brave]; extra == "tools"
|
|
302
296
|
Requires-Dist: agno[exa]; extra == "tools"
|
|
303
297
|
Requires-Dist: agno[cartesia]; extra == "tools"
|
|
304
298
|
Requires-Dist: agno[ddg]; extra == "tools"
|
|
@@ -324,6 +318,7 @@ Requires-Dist: agno[opencv]; extra == "tools"
|
|
|
324
318
|
Requires-Dist: agno[parallel]; extra == "tools"
|
|
325
319
|
Requires-Dist: agno[scrapegraph]; extra == "tools"
|
|
326
320
|
Requires-Dist: agno[valyu]; extra == "tools"
|
|
321
|
+
Requires-Dist: agno[yfinance]; extra == "tools"
|
|
327
322
|
Requires-Dist: agno[confluence]; extra == "tools"
|
|
328
323
|
Requires-Dist: agno[notion]; extra == "tools"
|
|
329
324
|
Requires-Dist: agno[oxylabs]; extra == "tools"
|
|
@@ -359,6 +354,7 @@ Requires-Dist: agno[clickhouse]; extra == "vectordbs"
|
|
|
359
354
|
Requires-Dist: agno[pinecone]; extra == "vectordbs"
|
|
360
355
|
Requires-Dist: agno[surrealdb]; extra == "vectordbs"
|
|
361
356
|
Requires-Dist: agno[upstash]; extra == "vectordbs"
|
|
357
|
+
Requires-Dist: agno[pylance]; extra == "vectordbs"
|
|
362
358
|
Provides-Extra: knowledge
|
|
363
359
|
Requires-Dist: agno[pdf]; extra == "knowledge"
|
|
364
360
|
Requires-Dist: agno[docx]; extra == "knowledge"
|
|
@@ -371,6 +367,7 @@ Provides-Extra: embedders
|
|
|
371
367
|
Requires-Dist: agno[huggingface]; extra == "embedders"
|
|
372
368
|
Requires-Dist: agno[vllm]; extra == "embedders"
|
|
373
369
|
Provides-Extra: tests
|
|
370
|
+
Requires-Dist: agno[a2a]; extra == "tests"
|
|
374
371
|
Requires-Dist: agno[dev]; extra == "tests"
|
|
375
372
|
Requires-Dist: agno[models]; extra == "tests"
|
|
376
373
|
Requires-Dist: agno[tools]; extra == "tests"
|
|
@@ -381,8 +378,16 @@ Requires-Dist: agno[embedders]; extra == "tests"
|
|
|
381
378
|
Requires-Dist: agno[performance]; extra == "tests"
|
|
382
379
|
Requires-Dist: agno[cookbooks]; extra == "tests"
|
|
383
380
|
Requires-Dist: agno[agui]; extra == "tests"
|
|
381
|
+
Requires-Dist: agno[integration-tests]; extra == "tests"
|
|
384
382
|
Requires-Dist: twine; extra == "tests"
|
|
385
383
|
Requires-Dist: build; extra == "tests"
|
|
384
|
+
Provides-Extra: integration-tests
|
|
385
|
+
Requires-Dist: exa_py; extra == "integration-tests"
|
|
386
|
+
Requires-Dist: ddgs; extra == "integration-tests"
|
|
387
|
+
Requires-Dist: yfinance; extra == "integration-tests"
|
|
388
|
+
Requires-Dist: sqlalchemy; extra == "integration-tests"
|
|
389
|
+
Requires-Dist: Pillow; extra == "integration-tests"
|
|
390
|
+
Requires-Dist: fastmcp; extra == "integration-tests"
|
|
386
391
|
Dynamic: license-file
|
|
387
392
|
|
|
388
393
|
<div align="center" id="top">
|
|
@@ -398,7 +403,7 @@ Dynamic: license-file
|
|
|
398
403
|
<div align="center">
|
|
399
404
|
<a href="https://docs.agno.com">Documentation</a>
|
|
400
405
|
<span> • </span>
|
|
401
|
-
<a href="https://docs.agno.com/examples/
|
|
406
|
+
<a href="https://docs.agno.com/examples/use-cases/agents/overview">Examples</a>
|
|
402
407
|
<span> • </span>
|
|
403
408
|
<a href="https://www.agno.com/?utm_source=github&utm_medium=readme&utm_campaign=agno-github">Website</a>
|
|
404
409
|
<br />
|
|
@@ -418,9 +423,9 @@ Agno also provides a ready-to-use FastAPI app (called the AgentOS) for serving y
|
|
|
418
423
|
|
|
419
424
|
## Getting started
|
|
420
425
|
|
|
421
|
-
If you're new to Agno, follow our [quickstart](https://docs.agno.com/
|
|
426
|
+
If you're new to Agno, follow our [quickstart](https://docs.agno.com/get-started/quickstart) to build your first Agent and chat with it using the AgentOS UI.
|
|
422
427
|
|
|
423
|
-
After that, checkout the [examples gallery](https://docs.agno.com/examples/
|
|
428
|
+
After that, checkout the [examples gallery](https://docs.agno.com/examples/use-cases/agents/overview) and build real-world applications with Agno.
|
|
424
429
|
|
|
425
430
|
## Documentation, Community & More Examples
|
|
426
431
|
|
|
@@ -492,27 +497,27 @@ Agno brings a novel architecture that no other framework provides, your AgentOS
|
|
|
492
497
|
|
|
493
498
|
Agno is an incredibly feature-rich framework, designed for Agent Engineering. Here are some key features:
|
|
494
499
|
|
|
495
|
-
| **Category**
|
|
496
|
-
|
|
497
|
-
| **Core Intelligence**
|
|
498
|
-
|
|
|
499
|
-
|
|
|
500
|
-
| **Memory, Knowledge, and Persistence** | **Persistent Storage**
|
|
501
|
-
|
|
|
502
|
-
|
|
|
503
|
-
|
|
|
504
|
-
| **Execution & Control**
|
|
505
|
-
|
|
|
506
|
-
|
|
|
507
|
-
|
|
|
508
|
-
|
|
|
509
|
-
| **Runtime & Evaluation**
|
|
510
|
-
|
|
|
511
|
-
|
|
|
512
|
-
|
|
|
513
|
-
| **Security & Privacy**
|
|
514
|
-
|
|
|
515
|
-
|
|
|
500
|
+
| **Category** | **Feature** | **Description** |
|
|
501
|
+
| -------------------------------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
502
|
+
| **Core Intelligence** | **Model Agnostic** | Works with any model provider so you can use your favorite LLMs. |
|
|
503
|
+
| | **Type Safe** | Enforce structured I/O through `input_schema` and `output_schema` for predictable, composable behavior. |
|
|
504
|
+
| | **Dynamic Context Engineering** | Inject variables, state, and retrieved data on the fly into context. Perfect for dependency-driven agents. |
|
|
505
|
+
| **Memory, Knowledge, and Persistence** | **Persistent Storage** | Give your Agents, Teams, and Workflows a database to persist session history, state, and messages. |
|
|
506
|
+
| | **User Memory** | Built-in memory system that allows Agents to recall user-specific context across sessions. |
|
|
507
|
+
| | **Agentic RAG** | Connect to 20+ vector stores (called **Knowledge** in Agno) with hybrid search + reranking out of the box. |
|
|
508
|
+
| | **Culture (Collective Memory)** | Shared knowledge that compounds across agents and time. |
|
|
509
|
+
| **Execution & Control** | **Human-in-the-Loop** | Native support for confirmations, manual overrides, and external tool execution. |
|
|
510
|
+
| | **Guardrails** | Built-in safeguards for validation, security, and prompt protection. |
|
|
511
|
+
| | **Agent Lifecycle Hooks** | Pre- and post-hooks to validate or transform inputs and outputs. |
|
|
512
|
+
| | **MCP Integration** | First-class support for the Model Context Protocol (MCP) to connect Agents with external systems. |
|
|
513
|
+
| | **Toolkits** | 100+ built-in toolkits with thousands of tools, ready for use across data, code, web, and enterprise APIs. |
|
|
514
|
+
| **Runtime & Evaluation** | **Runtime** | Pre-built FastAPI based runtime with SSE compatible endpoints, ready for production on day 1. |
|
|
515
|
+
| | **Control Plane (UI)** | Integrated interface to visualize, monitor, and debug agent activity in real time. |
|
|
516
|
+
| | **Natively Multimodal** | Agents can process and generate text, images, audio, video, and files. |
|
|
517
|
+
| | **Evals** | Measure your Agents' Accuracy, Performance, and Reliability. |
|
|
518
|
+
| **Security & Privacy** | **Private by Design** | Runs entirely in your cloud. The UI connects directly to your AgentOS from your browser, no data is ever sent externally. |
|
|
519
|
+
| | **Data Governance** | Your data lives securely in your Agent database, no external data sharing or vendor lock-in. |
|
|
520
|
+
| | **Access Control** | Role-based access (RBAC) and per-agent permissions to protect sensitive contexts and tools. |
|
|
516
521
|
|
|
517
522
|
Every part of Agno is built for real-world deployment — where developer experience meets production performance.
|
|
518
523
|
|
|
@@ -5,7 +5,7 @@ agno/filters.py,sha256=QxBjNUUS53o1zkG-J0F8XjDzlu0ADtJn3r6rfkGZ9Fk,12079
|
|
|
5
5
|
agno/media.py,sha256=eTfYb_pwhX_PCIVPSrW4VYRqmoxKABEF1aZClrVvQ30,16500
|
|
6
6
|
agno/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
agno/agent/__init__.py,sha256=s7S3FgsjZxuaabzi8L5n4aSH8IZAiZ7XaNNcySGR-EQ,1051
|
|
8
|
-
agno/agent/agent.py,sha256=
|
|
8
|
+
agno/agent/agent.py,sha256=mmDx7qIM-nHpUQ2T7H1Bweho_BQwitqp0Va3XoFPZDs,480529
|
|
9
9
|
agno/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
agno/api/agent.py,sha256=fKlQ62E_C9Rjd7Zus3Gs3R1RG-IhzFV-ICpkb6SLqYc,932
|
|
11
11
|
agno/api/api.py,sha256=gFhVjxJYkQsw8mBl2fhoStMPGlyJ37DJaqgUOwZVvQI,1021
|
|
@@ -28,6 +28,8 @@ agno/cloud/aws/s3/__init__.py,sha256=6t_fONFVV9pr04svE63yWSCWreBZ_pNTdhw4lqRnLb0
|
|
|
28
28
|
agno/cloud/aws/s3/api_client.py,sha256=nW-Jn8WPILIvdH8niQOPpKMXlAIDB2xYTz0GHRy4PHs,1438
|
|
29
29
|
agno/cloud/aws/s3/bucket.py,sha256=5dkKhjWVmf8dyQEyCTd6DkQlKADBnm0-_VKQgKqtJQM,7798
|
|
30
30
|
agno/cloud/aws/s3/object.py,sha256=ttZPbLm3o63oGIhKgAr_bIf9DOpJlXRmrEVlkbTcJbk,1766
|
|
31
|
+
agno/compression/__init__.py,sha256=HZuwB4OZ47vS-6icZUskNlp9JUdkb3JGn8HdlTlIIp8,90
|
|
32
|
+
agno/compression/manager.py,sha256=lF2iYeW-ry2g9DUSyT5LdjMmWO8SuIpGxRz8zqV26jE,8003
|
|
31
33
|
agno/culture/__init__.py,sha256=nVScbcUeBmkj8l-rJWGOVGytwp5xB6IfUEL_h6atzQw,118
|
|
32
34
|
agno/culture/manager.py,sha256=DZ2uIxMXZz2ZXdmK__WymV_-XVR2NwfNDMqbZk1MGpo,39801
|
|
33
35
|
agno/db/__init__.py,sha256=bfd_tpKsIKCjZosnFqID26VoWqy88v8gzkf9kLHToY4,625
|
|
@@ -35,45 +37,45 @@ agno/db/base.py,sha256=LW5OppdLwQXa-P5heAaBw72ss0se_D-mTgOTa9pgm5w,20699
|
|
|
35
37
|
agno/db/utils.py,sha256=eL0prfDrTEfOwNlOZeoZE4pu59bNJET22uh8wgzz-cw,4879
|
|
36
38
|
agno/db/async_postgres/__init__.py,sha256=ja_thcYP3bP0DD3da6iUVDR_w2-S6B3M-UxBlkRfAvY,76
|
|
37
39
|
agno/db/dynamo/__init__.py,sha256=fZ7NwKbyhoIu7_4T6hVz44HkIINXMnTfFrDrgB6bpEo,67
|
|
38
|
-
agno/db/dynamo/dynamo.py,sha256
|
|
40
|
+
agno/db/dynamo/dynamo.py,sha256=Rn3AXWcqo8q63Gk2UumuS2Qi8KU9y40lXTY3FF0Qo4c,78740
|
|
39
41
|
agno/db/dynamo/schemas.py,sha256=Pnygtr5sQEalqyX2K-YRxX0eJBc1KjaoYqf5i16uVS0,13055
|
|
40
42
|
agno/db/dynamo/utils.py,sha256=hF6Sta-cStS-0OThuZRBsK7NlKq8cNpkatgRN4pqJqU,27400
|
|
41
43
|
agno/db/firestore/__init__.py,sha256=lYAJjUs4jMxJFty1GYZw464K35zeuBlcoFR9uuIQYtI,79
|
|
42
|
-
agno/db/firestore/firestore.py,sha256=
|
|
44
|
+
agno/db/firestore/firestore.py,sha256=k_1F90Wi1n4q4aNuPH2xaMsss4QXE-a2Mw47_Sv19Ac,71306
|
|
43
45
|
agno/db/firestore/schemas.py,sha256=VVueKixuR0YUnUWIJBPKuN1mxVP8sF3PDqR9GZc2BQA,4419
|
|
44
46
|
agno/db/firestore/utils.py,sha256=vl7hwsOpaSgota0yN6DAQFHnviKvK670SOQme6gK-nI,13818
|
|
45
47
|
agno/db/gcs_json/__init__.py,sha256=aTR4o3aFrzfANHtRw7nX9uc5_GsY52ch0rmoo7uXuc4,76
|
|
46
|
-
agno/db/gcs_json/gcs_json_db.py,sha256=
|
|
48
|
+
agno/db/gcs_json/gcs_json_db.py,sha256=6HBNjg_O6ZqahVOzejaVyxX_ImEHfsAYR_7tThmn9ns,55176
|
|
47
49
|
agno/db/gcs_json/utils.py,sha256=-vGa_C8n4BSZOLICn6SEGQAZ73Cd-ejB1X5NzEfXWN8,8014
|
|
48
50
|
agno/db/in_memory/__init__.py,sha256=OvR_FONhOh9PmcRfUA_6gvplZT5UGIBAgVKqVg6SWTA,80
|
|
49
|
-
agno/db/in_memory/in_memory_db.py,sha256=
|
|
51
|
+
agno/db/in_memory/in_memory_db.py,sha256=ub0RFeOi9pzFREK6WNPWM3Qf2T2JHAZhZem9t6uITjY,46610
|
|
50
52
|
agno/db/in_memory/utils.py,sha256=RaeOzP74UANG-xFzCGRb20jZ4wgp_MPSlvU0T5I1uVk,8067
|
|
51
53
|
agno/db/json/__init__.py,sha256=zyPTmVF9S-OwXCL7FSkrDmunZ_Q14YZO3NYUv1Pa14Y,62
|
|
52
|
-
agno/db/json/json_db.py,sha256=
|
|
54
|
+
agno/db/json/json_db.py,sha256=CT3kEvXT0TglKlVrGAXBKpJXR7Noj1r5T8QFKV6ekss,53248
|
|
53
55
|
agno/db/json/utils.py,sha256=ywD72LhxKl6yfmENKlOgCkw5W_XJ-oeOPSVvjsNnOy8,8062
|
|
54
56
|
agno/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
agno/db/migrations/manager.py,sha256=
|
|
57
|
+
agno/db/migrations/manager.py,sha256=D7-qgN0KxP_tLAhJw_1uPNCtxpiK-6r-S1Gg5r8AD0k,9647
|
|
56
58
|
agno/db/migrations/v1_to_v2.py,sha256=gj8deaEWUxOr0qJyMfjOpV3LxEh-otOSOxDckeUq0qU,24938
|
|
57
59
|
agno/db/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
60
|
agno/db/migrations/versions/v2_3_0.py,sha256=WikuOtgQs_Tq8o3JndCMG6HAMzKvz4GVth9V5V5RuvE,35161
|
|
59
61
|
agno/db/mongo/__init__.py,sha256=NG2WC2jE5PX1kMXTYCVHjhomf5DAJgvzSj45QHdvl2E,466
|
|
60
|
-
agno/db/mongo/async_mongo.py,sha256=
|
|
61
|
-
agno/db/mongo/mongo.py,sha256=
|
|
62
|
+
agno/db/mongo/async_mongo.py,sha256=zcaQckGYj1SLRrAEyD097FjmBiH58rtx4dItaMKfE0k,87607
|
|
63
|
+
agno/db/mongo/mongo.py,sha256=hlGWzqSgrOtJQiNxS50q7O4FaSq3RwnJpa2LwZt5rcs,78730
|
|
62
64
|
agno/db/mongo/schemas.py,sha256=JAmvmQP1l2YstcQv1yIGiPJ4ZxPWyuq6Vhr9_rJ4nwE,2388
|
|
63
65
|
agno/db/mongo/utils.py,sha256=1KrbF1PR_707e9SqXZcquaw_N7mRYm9HjJnvYwBjgG8,9921
|
|
64
66
|
agno/db/mysql/__init__.py,sha256=ohBMZ1E6ctioEF0XX5PjC4LtUQrc6lFkjsE4ojyXA8g,63
|
|
65
|
-
agno/db/mysql/mysql.py,sha256=
|
|
67
|
+
agno/db/mysql/mysql.py,sha256=9Rbq9orJX6MtHHVb749cU3cl5DpneYBEOQBGOeMOv_U,99249
|
|
66
68
|
agno/db/mysql/schemas.py,sha256=W_irrKPO9geylUFkzoZ8mG3nDKKTgROfVG2GdqQBDm8,6816
|
|
67
69
|
agno/db/mysql/utils.py,sha256=PdqN-SxM-ox8HU9CZyxzvs2D1FE2vdZFVCyFgFcQsyU,12366
|
|
68
70
|
agno/db/postgres/__init__.py,sha256=Ojk00nTCzQFiH2ViD7KIBjgpkTKLRNPCwWnuXMKtNXY,154
|
|
69
|
-
agno/db/postgres/async_postgres.py,sha256=
|
|
70
|
-
agno/db/postgres/postgres.py,sha256=
|
|
71
|
+
agno/db/postgres/async_postgres.py,sha256=nTxMbdG2wXK4P071vv2jZkMybt7kqTebUe3oNs-Poc0,83294
|
|
72
|
+
agno/db/postgres/postgres.py,sha256=PW7Y7HIOp1azGqZc2j-YAasv1E9wWlzywLqhVv-JV3Q,95477
|
|
71
73
|
agno/db/postgres/schemas.py,sha256=ndtJVd5xx3RvqiOH5zh9tynHiaEabO0uAu4IUlozXnw,6423
|
|
72
74
|
agno/db/postgres/utils.py,sha256=UE3UQZ-h7fADAKBsX4BWcDka54YNROEpBrlfTmDvpqc,15471
|
|
73
75
|
agno/db/redis/__init__.py,sha256=rZWeZ4CpVeKP-enVQ-SRoJ777i0rdGNgoNDRS9gsfAc,63
|
|
74
|
-
agno/db/redis/redis.py,sha256=
|
|
76
|
+
agno/db/redis/redis.py,sha256=lYVmAUeWpcDh8Lk7KorxGB1sv7K_2Sft1ySzpVC489Y,63734
|
|
75
77
|
agno/db/redis/schemas.py,sha256=S_q0Ex-n4Btn233XIReEcuoZv0K67rNG4uHYSZ0qV1k,4192
|
|
76
|
-
agno/db/redis/utils.py,sha256=
|
|
78
|
+
agno/db/redis/utils.py,sha256=vQpLI-V442B6m0q_l8IVEJctLD4P-kawbCm5A_Fnotg,11326
|
|
77
79
|
agno/db/schemas/__init__.py,sha256=g72Zr5_nm00yXHStv4pf9PG9bGLKXEK7Av6YQtrDbCQ,147
|
|
78
80
|
agno/db/schemas/culture.py,sha256=w4azKAVLf5X4xyRUFXMIEq0CA0pnyeN03W3eMpqScxo,4342
|
|
79
81
|
agno/db/schemas/evals.py,sha256=T1zIiwrN5fxZVD2em85wQ9CV-HSVZvNF4D4v9_w30VA,786
|
|
@@ -82,12 +84,12 @@ agno/db/schemas/memory.py,sha256=dA7It1cN60dId-GpowmKTORy4Q6r9L49ZpGnnZkXmds,212
|
|
|
82
84
|
agno/db/schemas/metrics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
85
|
agno/db/singlestore/__init__.py,sha256=dufbaod8ZZIeZIVi0hYJQ8Eu2DfIfWdIy00cpqAsx9U,87
|
|
84
86
|
agno/db/singlestore/schemas.py,sha256=7Jjuax5E-OoYa-DfiCWfaUmeOazWD3zZXhuDl-18Z2k,6678
|
|
85
|
-
agno/db/singlestore/singlestore.py,sha256=
|
|
87
|
+
agno/db/singlestore/singlestore.py,sha256=ah3GfIAMm7Pnz5jrGTREVZ2HbDkxdtE1813Wgw08SG4,97337
|
|
86
88
|
agno/db/singlestore/utils.py,sha256=w2FVFIBpFJK6nKJVt1sgv9N-esmfpGY_8ViFRI69I2I,13677
|
|
87
89
|
agno/db/sqlite/__init__.py,sha256=09V3i4y0-tBjt60--57ivZ__SaaS67GCsDT4Apzv-5Y,138
|
|
88
|
-
agno/db/sqlite/async_sqlite.py,sha256=
|
|
90
|
+
agno/db/sqlite/async_sqlite.py,sha256=anqgvE2Alxa7ZYkIMLzclGlFLCEecKm4Fi-eu4e-LmU,100386
|
|
89
91
|
agno/db/sqlite/schemas.py,sha256=vbP82UR8riESIwELSf4vNKf9lOYaPsilC64UP6KU-XQ,6282
|
|
90
|
-
agno/db/sqlite/sqlite.py,sha256=
|
|
92
|
+
agno/db/sqlite/sqlite.py,sha256=CJWYm8KfGjZIAJyBtqJsBzxKZOxHcdKo1nE9rn_KzYw,98445
|
|
91
93
|
agno/db/sqlite/utils.py,sha256=ZCYVrhtm9Bw1gddlaVZW7bQF2XqIJ993UDWVDGsYtX8,15557
|
|
92
94
|
agno/db/surrealdb/__init__.py,sha256=C8qp5-Nx9YnSmgKEtGua-sqG_ntCXONBw1qqnNyKPqI,75
|
|
93
95
|
agno/db/surrealdb/metrics.py,sha256=oKDRyjRQ6KR3HaO8zDHQLVMG7-0NDkOFOKX5I7mD5FA,10336
|
|
@@ -152,11 +154,11 @@ agno/knowledge/reader/field_labeled_csv_reader.py,sha256=yVdfFGTkb7bhM3cpEukgeAN
|
|
|
152
154
|
agno/knowledge/reader/firecrawl_reader.py,sha256=SCbcRLkMrUb2WiC6SPuAoZULtHITa2VAmBtZlGmamGM,6855
|
|
153
155
|
agno/knowledge/reader/json_reader.py,sha256=mh_SZE7jPaDO5KleFM0X7LsrYCSTimQ7qbvqh2YR8RE,3317
|
|
154
156
|
agno/knowledge/reader/markdown_reader.py,sha256=QDg9oZTTRZkXf7D8eFrZ12t5gfXd5KWmJeH43HqNCHo,5284
|
|
155
|
-
agno/knowledge/reader/pdf_reader.py,sha256=
|
|
157
|
+
agno/knowledge/reader/pdf_reader.py,sha256=utUJiXhS9SXSZfsDg5dOo5Fr1PS8ODtOA5exTcS6LbY,17187
|
|
156
158
|
agno/knowledge/reader/pptx_reader.py,sha256=_UQZlDf8XtA62uwYDqlJcU7X-KQ00lu4ZevXDCPnZ6k,3929
|
|
157
159
|
agno/knowledge/reader/reader_factory.py,sha256=1VGnZ4lpGiwa45dqfOyXmVB1dGb_4tOXpsKN9Vaqazs,11408
|
|
158
160
|
agno/knowledge/reader/s3_reader.py,sha256=8tBUGw586m72FQReMux0iJoz8FhhLjpH5lxYamEilHk,3549
|
|
159
|
-
agno/knowledge/reader/tavily_reader.py,sha256=
|
|
161
|
+
agno/knowledge/reader/tavily_reader.py,sha256=kwQXj3QWSW-snv7R3VPValmEngc862UkhSo9lQrjXCk,7183
|
|
160
162
|
agno/knowledge/reader/text_reader.py,sha256=NIST7iZ10mOiyxeZxgTiWjdS_0o3g1pPw30cAz2HRhg,4456
|
|
161
163
|
agno/knowledge/reader/web_search_reader.py,sha256=QacYjE5u36zsUzdPdpXzLi0Zj550UhKltzG9HScgb7I,12598
|
|
162
164
|
agno/knowledge/reader/website_reader.py,sha256=8R_71uVjx_tHAWhvvHNQqyc4nysV6HksJBMLZITpwS8,19349
|
|
@@ -169,30 +171,34 @@ agno/knowledge/reranker/base.py,sha256=GsPcMmBiI5gOX8XABpmQNeP478mp5ma-W-1n37P0-
|
|
|
169
171
|
agno/knowledge/reranker/cohere.py,sha256=2Be5blVyeZ3vYlnFa2NYvJuytjaCB8G2OWJ11pQz7vQ,2178
|
|
170
172
|
agno/knowledge/reranker/infinity.py,sha256=N9geg9xZqRdJZksfQcvbGJgMymXrQVJl_K5KICWqH8o,7193
|
|
171
173
|
agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_UjezfNrjFYXpNVHD4U-U,1912
|
|
172
|
-
agno/memory/__init__.py,sha256=
|
|
173
|
-
agno/memory/manager.py,sha256=
|
|
174
|
+
agno/memory/__init__.py,sha256=hB7aQmxTHTMX4prgoLabas1Ic_LvT777oR_ECIXyAiM,419
|
|
175
|
+
agno/memory/manager.py,sha256=dMDUD06BhSbTKk6ULs26H7GvoB0VlbzVbfcGpcIVYjM,60334
|
|
176
|
+
agno/memory/strategies/__init__.py,sha256=schF5eKN-eQALiCZ6xDnJzH12e1xnEq84A6Lc36IdrM,456
|
|
177
|
+
agno/memory/strategies/base.py,sha256=13xCiBPtFUrpDaWbiz8zmNGjopT4VSIkcHVxfnvJ4Wc,1900
|
|
178
|
+
agno/memory/strategies/summarize.py,sha256=4M9zWTsooC3EtHpZoC7Z-yFaQgQoebRMNfZPitdsvB0,7307
|
|
179
|
+
agno/memory/strategies/types.py,sha256=b3N5jOG_dM4AxT7vGagFIc9sqUUjxFtRHSoH4_AhEx8,1225
|
|
174
180
|
agno/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
agno/models/base.py,sha256=
|
|
181
|
+
agno/models/base.py,sha256=_fqSgV6xF2UVaMG5Q66lJ77TJu1AxnSPOayaSWEYQ2s,107116
|
|
176
182
|
agno/models/defaults.py,sha256=1_fe4-ZbNriE8BgqxVRVi4KGzEYxYKYsz4hn6CZNEEM,40
|
|
177
|
-
agno/models/message.py,sha256=
|
|
183
|
+
agno/models/message.py,sha256=5-Nvqd6rXNca37yiVVQgBJY4w_gudVawg-ZQHcUX4SE,19763
|
|
178
184
|
agno/models/metrics.py,sha256=81IILXZwGmOTiWK003bi5mg4bM1f4LCWbwyamjFzp18,4500
|
|
179
185
|
agno/models/response.py,sha256=gkoRWEsChS544VL0grPmS9L0BM0FZgBWxGtR10PtoKc,6996
|
|
180
186
|
agno/models/utils.py,sha256=jxAIIG2y7KBypwFlc87GzFnvogRpGLfd-wwr6KXZIj8,7269
|
|
181
187
|
agno/models/aimlapi/__init__.py,sha256=XQcFRvt4qJ8ol9nCC0XKEkVEDivdNf3nZNoJZMZ5m8M,78
|
|
182
188
|
agno/models/aimlapi/aimlapi.py,sha256=9Qh-b8HvFSvmPP3VBNGT00qy9izHLMWgR-KDQCE5CM0,1493
|
|
183
189
|
agno/models/anthropic/__init__.py,sha256=nbReX3p17JCwfrMDR9hR7-OaEFZm80I7dng93dl-Fhw,77
|
|
184
|
-
agno/models/anthropic/claude.py,sha256=
|
|
190
|
+
agno/models/anthropic/claude.py,sha256=z2W3ikqEOhGbFJUvSP0E9tL_5r27edBVuMmA9A6u8eo,46842
|
|
185
191
|
agno/models/aws/__init__.py,sha256=TbcwQwv9A7KjqBM5RQBR8x46GvyyCxbBCjwkpjfVGKE,352
|
|
186
|
-
agno/models/aws/bedrock.py,sha256=
|
|
187
|
-
agno/models/aws/claude.py,sha256=
|
|
192
|
+
agno/models/aws/bedrock.py,sha256=U_IzwNe2DMUzxHGykjWDGRFuVa9EJsPKWp--JXs-6F4,29818
|
|
193
|
+
agno/models/aws/claude.py,sha256=3QdEBkOrmA2_BriRsbTdJszymYFJSyhu5pXJKW5X6UI,8722
|
|
188
194
|
agno/models/azure/__init__.py,sha256=EoFdJHjayvmv_VOmaW9cJguwA1K5OFS_nFeazyn0B2w,605
|
|
189
|
-
agno/models/azure/ai_foundry.py,sha256=
|
|
195
|
+
agno/models/azure/ai_foundry.py,sha256=am28Us4Ub9yv1NqXi_OqZWldOlvkEOpxLfZre4hxkbA,19824
|
|
190
196
|
agno/models/azure/openai_chat.py,sha256=X3IttroDTuMJzMwlXvTpsB5DS63j7IEDCPYDTXUKnBs,5439
|
|
191
197
|
agno/models/cerebras/__init__.py,sha256=F3vE0lmMu-qDQ_Y7hg_czJitLsvNu4SfPv174wg1cq8,376
|
|
192
|
-
agno/models/cerebras/cerebras.py,sha256=
|
|
193
|
-
agno/models/cerebras/cerebras_openai.py,sha256=
|
|
198
|
+
agno/models/cerebras/cerebras.py,sha256=zO1Zgspl9V2UyNW3kgf8ZYM8Rhu4HWJfdcfbueriA7s,19288
|
|
199
|
+
agno/models/cerebras/cerebras_openai.py,sha256=0uDNsAY2lJJmPAcVTQsXm9OtYkhhEu42zW9yVKJC6qM,4217
|
|
194
200
|
agno/models/cohere/__init__.py,sha256=4kFUnfPEL3__hd1TRW7fZxh7D_DctcpY5QDV58lR6s0,72
|
|
195
|
-
agno/models/cohere/chat.py,sha256=
|
|
201
|
+
agno/models/cohere/chat.py,sha256=aB6c599tOKy5sCXyrzVgvDJ0Gn_7bpoY4FPaEWXZBCw,16785
|
|
196
202
|
agno/models/cometapi/__init__.py,sha256=_t5JqHLyohg2u1RkkOR9eSwKsPoAhWUr48i9ei-Rn4Y,82
|
|
197
203
|
agno/models/cometapi/cometapi.py,sha256=0BYFV3HJnI3lvcXr67EQZJlxNINPR3-zCQMoARVpvro,1946
|
|
198
204
|
agno/models/dashscope/__init__.py,sha256=lHZTGvs7fVeX4N1G7JNMa4mfsSQHgQq02DsSVqYFqpw,86
|
|
@@ -204,29 +210,29 @@ agno/models/deepseek/deepseek.py,sha256=Sc2Jtc6-lROb2BnSHzG_m6p48RPlYXbsyrgjHqYW
|
|
|
204
210
|
agno/models/fireworks/__init__.py,sha256=qIDjKUnwmrnwfa9B2Y3ybRyuUsF7Pzw6_bVq4N6M0Cg,86
|
|
205
211
|
agno/models/fireworks/fireworks.py,sha256=jL1Zg8DZBbkNGe1-Fr5ymD8VWw2pTho4DsJa7DqWvM8,943
|
|
206
212
|
agno/models/google/__init__.py,sha256=bEOSroFJ4__38XaCgBUWiOe_Qga66ZRm_gis__yIMmc,74
|
|
207
|
-
agno/models/google/gemini.py,sha256=
|
|
213
|
+
agno/models/google/gemini.py,sha256=per4xGDRw_4d1EZKXL--q1TvHWYuMrJF9puVDx38M1M,71912
|
|
208
214
|
agno/models/groq/__init__.py,sha256=gODf5IA4yJKlwTEYsUywmA-dsiQVyL2_yWMc8VncdVU,66
|
|
209
|
-
agno/models/groq/groq.py,sha256=
|
|
215
|
+
agno/models/groq/groq.py,sha256=Wh4KefvZzfykUKipA9lwJllK3NK4ZtSB9l5HeE_lx6M,24049
|
|
210
216
|
agno/models/huggingface/__init__.py,sha256=VgdYkgSHqsFLhvJ9lSUCyEZfest8hbCAUpWU6WCk-_c,94
|
|
211
|
-
agno/models/huggingface/huggingface.py,sha256=
|
|
217
|
+
agno/models/huggingface/huggingface.py,sha256=33xVl9uSsOrSLzBBs9XHPSakPq_d7zoWXJMywbC4oVw,20499
|
|
212
218
|
agno/models/ibm/__init__.py,sha256=jwrz0JL4pd1cAPN7wLi51qgQfOB8kUIhFjs_oEc4NWc,74
|
|
213
|
-
agno/models/ibm/watsonx.py,sha256=
|
|
219
|
+
agno/models/ibm/watsonx.py,sha256=DS5Yiyszd50xLCgiLjAOkYPnFAvF8WBe37cpNjwsMtA,16646
|
|
214
220
|
agno/models/internlm/__init__.py,sha256=88O1Vb6HuNls8KDUOKuQdKF_3iG9wI3uc56Xy-qBoMI,75
|
|
215
221
|
agno/models/internlm/internlm.py,sha256=9oX7gbvVS-2GJhGvfug7sVFWMLCg-m1icQyUeFZk1KI,904
|
|
216
222
|
agno/models/langdb/__init__.py,sha256=ubh5nDcxyH33_ONwsmY4tWQz5esRwRjHBe68u9hdAIM,45
|
|
217
223
|
agno/models/langdb/langdb.py,sha256=tTorf22oSTA632LzFor6UtJLqAOP6gsEKtNimNeehZI,1631
|
|
218
224
|
agno/models/litellm/__init__.py,sha256=5e4yHqepF9-fOE0DMDIKnH6psFV1OcRgfAD5BaoVRgI,353
|
|
219
|
-
agno/models/litellm/chat.py,sha256=
|
|
225
|
+
agno/models/litellm/chat.py,sha256=BLVEdddJ5NCxIGq_S0sqPXAEIyp_bWsUtA6u5-JlA_Y,19814
|
|
220
226
|
agno/models/litellm/litellm_openai.py,sha256=6TNf6nRbCibPWEyubDmSLnoKpAKcM31afiklAYbujyY,759
|
|
221
227
|
agno/models/llama_cpp/__init__.py,sha256=oxOZfqEcOdcB74VLwOTO6bPmXHHA88uaeJO-IkXgr8A,84
|
|
222
228
|
agno/models/llama_cpp/llama_cpp.py,sha256=tWIF0TQH-sK29xCrTe7oy0SjSC-FlOmwmPL1d5IVMPM,673
|
|
223
229
|
agno/models/lmstudio/__init__.py,sha256=3GPW_YrtFalcpsyoHSFKCre9fYcMHf3gvNcMLerVOZg,82
|
|
224
230
|
agno/models/lmstudio/lmstudio.py,sha256=E7pmyOcrYUzYr3IhgptL9_CnmI_clftnP4Erw6ADdoQ,756
|
|
225
231
|
agno/models/meta/__init__.py,sha256=Of02Sw_EzexIdap-GHuDEcvGTSUbho4Eh66jG7xzha8,347
|
|
226
|
-
agno/models/meta/llama.py,sha256=
|
|
232
|
+
agno/models/meta/llama.py,sha256=JvyuXtN7Em55U_uRy9cHEx5iw8FgbnQRPo32_1GsMxg,18938
|
|
227
233
|
agno/models/meta/llama_openai.py,sha256=1IMo5Wg_5QDK2V1vPY5bTfnSvPqJbYzHC0zcw7Am-z0,2032
|
|
228
234
|
agno/models/mistral/__init__.py,sha256=6CP9TDn8oRUjtGBk1McvSQHrjY935vB6msGPlXBhkSw,86
|
|
229
|
-
agno/models/mistral/mistral.py,sha256=
|
|
235
|
+
agno/models/mistral/mistral.py,sha256=FpyYp9zlnKuXVKBDhHSMNnHZTE-8m2w5h6ohoTlT6AE,16845
|
|
230
236
|
agno/models/nebius/__init__.py,sha256=gW2yvxIfV2gxxOnBtTP8MCpI9AvMbIE6VTw-gY01Uvg,67
|
|
231
237
|
agno/models/nebius/nebius.py,sha256=25NJ1aFdCOnfAaGmho-TLQ_vgbhWNn0fhLyvMq5d8a8,1915
|
|
232
238
|
agno/models/nexus/__init__.py,sha256=q9pwjZ2KXpG1B3Cy8ujrj3_s0a_LI5SaekXJL6mh4gE,63
|
|
@@ -234,11 +240,11 @@ agno/models/nexus/nexus.py,sha256=rJcBQXR1aqUiLWMPBRuHIEh87wVrsqXup1hr_smanBQ,63
|
|
|
234
240
|
agno/models/nvidia/__init__.py,sha256=O0g3_0_ciOz0AH4Y4CAL7YRfhdDPAvhDzNjJmgWKT78,74
|
|
235
241
|
agno/models/nvidia/nvidia.py,sha256=0vpEq4cBY_5JdBzGoD95rBdro6dpVNAV5ioKz3lpnfs,948
|
|
236
242
|
agno/models/ollama/__init__.py,sha256=TIhwxG7ek3eyfoKTLoZQXwdgzcIngYKjbjSlkf2gkWE,72
|
|
237
|
-
agno/models/ollama/chat.py,sha256=
|
|
243
|
+
agno/models/ollama/chat.py,sha256=Szc8rEWRvQ2CW50V5xAuccX4Ozc1BAV9wUPbFJhY_J8,16862
|
|
238
244
|
agno/models/openai/__init__.py,sha256=OssVgQRpsriU6aJZ3lIp_jFuqvX6y78L4Fd3uTlmI3E,225
|
|
239
|
-
agno/models/openai/chat.py,sha256=
|
|
245
|
+
agno/models/openai/chat.py,sha256=1rgOSb-Kt2IGRqqt40_LLWKBkufgBEQWt7UTdLFIB7g,39400
|
|
240
246
|
agno/models/openai/like.py,sha256=wmw9PfAVqluBs4MMY73dgjelKn1yl5JDKyCRvaNFjFw,745
|
|
241
|
-
agno/models/openai/responses.py,sha256=
|
|
247
|
+
agno/models/openai/responses.py,sha256=EgD_7ZVEQZHOOc7rSOD2AQkj-5PiogyXv1SinAuG1FI,45923
|
|
242
248
|
agno/models/openrouter/__init__.py,sha256=ZpZhNyy_EGSXp58uC9e2iyjnxBctql7GaY8rUG-599I,90
|
|
243
249
|
agno/models/openrouter/openrouter.py,sha256=YXjTHcETz4mn-exBr0GyAbP7_XeQMJkF7Pdf2XBRdFw,2595
|
|
244
250
|
agno/models/perplexity/__init__.py,sha256=JNmOElDLwcZ9_Lk5owkEdgwmAhaH3YJ-VJqOI8rgp5c,90
|
|
@@ -256,7 +262,7 @@ agno/models/together/together.py,sha256=27e-0IqlsFYh0d40XiOjx18GjOqytFI7vwcnCk8J
|
|
|
256
262
|
agno/models/vercel/__init__.py,sha256=BYQD23dB-dmIXm8iy4S6yxXRW8xg24E9TLOgwckH674,55
|
|
257
263
|
agno/models/vercel/v0.py,sha256=48Na0ZFBnRw3hUFUqO5xMO78jzOYnBj-o5kLLg4F188,826
|
|
258
264
|
agno/models/vertexai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
-
agno/models/vertexai/claude.py,sha256=
|
|
265
|
+
agno/models/vertexai/claude.py,sha256=2mttuqwzHKEE5eIP8wvUpo2bGAOFYhG61_VODk6ZJC8,7530
|
|
260
266
|
agno/models/vllm/__init__.py,sha256=G8cpCZtu4zJvMGud5eSYMMxGBpNTe9jM4W-p0XUeCGE,59
|
|
261
267
|
agno/models/vllm/vllm.py,sha256=UtiiSvUR4pG_1CzuhY5MWduRgzM2hGVTakKJ6ZBdQmo,2730
|
|
262
268
|
agno/models/xai/__init__.py,sha256=ukcCxnCHxTtkJNA2bAMTX4MhCv1wJcbiq8ZIfYczIxs,55
|
|
@@ -266,10 +272,10 @@ agno/os/app.py,sha256=sAwBkRFAuJqix_KtHwrYEaViD7wlQTZ80fbzzh9WUro,34228
|
|
|
266
272
|
agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
|
|
267
273
|
agno/os/config.py,sha256=QPGxENF2yezEOp0yV9OXU-FBs4_vYSXkxbbSol51wPE,2932
|
|
268
274
|
agno/os/mcp.py,sha256=7lAiELFmwcF-eN_pOIJVjun9r5dFcQfPTHD_rP1Zu-s,10318
|
|
269
|
-
agno/os/router.py,sha256=
|
|
270
|
-
agno/os/schema.py,sha256=
|
|
275
|
+
agno/os/router.py,sha256=4N0OZbA6q-CrE05GAmJqVjGum_ubJvvA1yNzkjVAXhU,76288
|
|
276
|
+
agno/os/schema.py,sha256=j1erUh2NQeoZaLFF7u0GLGJqpIaCbf3pVk3cJ4c4_s4,53663
|
|
271
277
|
agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
|
|
272
|
-
agno/os/utils.py,sha256=
|
|
278
|
+
agno/os/utils.py,sha256=Pi95WSSI9ohKD8F68G3pqSY4ngGIwxi1a3wyXb0VYKE,28169
|
|
273
279
|
agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
274
280
|
agno/os/interfaces/base.py,sha256=vXkr1tRjWHTcmBlQFzvQjqURLhObmFtUAx82uij_j48,542
|
|
275
281
|
agno/os/interfaces/a2a/__init__.py,sha256=Fs7--dx9drvtVS9QjsCCm0P7c-hJ7TzU8gNwKTQsZDA,62
|
|
@@ -278,8 +284,8 @@ agno/os/interfaces/a2a/router.py,sha256=OpNCHhYoCUyfcuRtiOdvUrUZnxfFB1jhMWraLA85
|
|
|
278
284
|
agno/os/interfaces/a2a/utils.py,sha256=rTn9x0UGbX53EiAsljf87PmzYwLuvqaobUWpCn35ut0,39285
|
|
279
285
|
agno/os/interfaces/agui/__init__.py,sha256=1zrGICk4roXUINwSFZfqH6sBsbHmD5KjGYVJMGg4fKQ,66
|
|
280
286
|
agno/os/interfaces/agui/agui.py,sha256=PKGoDDbtQFmEC0zRwZmsjS_5t9bJWJ-ZGwxEQsu9P-U,1415
|
|
281
|
-
agno/os/interfaces/agui/router.py,sha256=
|
|
282
|
-
agno/os/interfaces/agui/utils.py,sha256=
|
|
287
|
+
agno/os/interfaces/agui/router.py,sha256=U2w26v2oOCCOl5t5XduQChO3_eJBNH4Mk9BH77KKJag,5257
|
|
288
|
+
agno/os/interfaces/agui/utils.py,sha256=veRYnk8EVSuF2owJjNFUhQRsyqbxIlFQnAqjB0KY0mU,23645
|
|
283
289
|
agno/os/interfaces/slack/__init__.py,sha256=F095kOcgiyk_KzIozNNieKwpVc_NR8HYpuO4bKiCNN0,70
|
|
284
290
|
agno/os/interfaces/slack/router.py,sha256=dgxKk4ghA03ZS1xuPhXAlUD_wZOyx0g2TJ7pVN6xbG0,5931
|
|
285
291
|
agno/os/interfaces/slack/security.py,sha256=nMbW_0g-G_DEMbCQOD8C3PYrRPIpB2cyM6P-xS6GHYk,917
|
|
@@ -301,8 +307,8 @@ agno/os/routers/knowledge/__init__.py,sha256=ZSqMQ8X7C_oYn8xt7NaYlriarWUpHgaWDyH
|
|
|
301
307
|
agno/os/routers/knowledge/knowledge.py,sha256=6rR1CiHUDmg7kJy7g218IGaFEl0YAMbCciiFNJeEBMo,45320
|
|
302
308
|
agno/os/routers/knowledge/schemas.py,sha256=GUr5RsRbI7K3qrrOlGVfW0Kf7XO6HjMviMW6nEl6qf8,8847
|
|
303
309
|
agno/os/routers/memory/__init__.py,sha256=9hrYFc1dkbsLBqKfqyfioQeLX9TTbLrJx6lWDKNNWbc,93
|
|
304
|
-
agno/os/routers/memory/memory.py,sha256=
|
|
305
|
-
agno/os/routers/memory/schemas.py,sha256=
|
|
310
|
+
agno/os/routers/memory/memory.py,sha256=N-T2Z7OI3-sCsoqhYNmY3D0dehrclWSk-FncogwVn-I,28331
|
|
311
|
+
agno/os/routers/memory/schemas.py,sha256=zJ2_ITD3Pz3-Oidy8qItcOkfLy0mbamBQDBlVjzhM1A,4152
|
|
306
312
|
agno/os/routers/metrics/__init__.py,sha256=Uw6wWEikLpF5hHxBkHtFyaTuz7OUerGYWk0JW7teUGQ,97
|
|
307
313
|
agno/os/routers/metrics/metrics.py,sha256=KaH49hSsAYjJZFdNI-Zg46RYl_QajYIc0YGpKdzK4xs,8720
|
|
308
314
|
agno/os/routers/metrics/schemas.py,sha256=1YsD01b1-mtJlh5HhW9zvPYok9Q2nPpDhN-gJ6B88sU,2674
|
|
@@ -322,18 +328,18 @@ agno/reasoning/step.py,sha256=6DaOb_0DJRz9Yh1w_mxcRaOSVzIQDrj3lQ6rzHLdIwA,1220
|
|
|
322
328
|
agno/reasoning/vertexai.py,sha256=O9ntvalkIY2jLmWviEH1DnecMskqTL-mRZQBZohoHiU,2974
|
|
323
329
|
agno/run/__init__.py,sha256=DFjpUomTzHvIDQQE_PUfp4oJM-7Ti8h8a_Fe5Kr8rjM,98
|
|
324
330
|
agno/run/agent.py,sha256=zy7gLVp_pMqa_Cg2mZ8I1EVGrfGMfzOoW3syly9E7Lc,27484
|
|
325
|
-
agno/run/base.py,sha256=
|
|
331
|
+
agno/run/base.py,sha256=WQ3AjdxAlZbJQgcmRHvJPs0_Ndwu3pTuD2ilgTPGxz4,8325
|
|
326
332
|
agno/run/cancel.py,sha256=yoSj3fnx8D7Gf-fSngVIgd3GOp3tRaDhHH_4QeHDoAk,2667
|
|
327
333
|
agno/run/messages.py,sha256=rAC4CLW-xBA6qFS1BOvcjJ9j_qYf0a7sX1mcdY04zMU,1126
|
|
328
334
|
agno/run/team.py,sha256=dCyLp-OixJu1QxZRNTvl9uZ_BvKGneMc09A6OB34N5k,27480
|
|
329
|
-
agno/run/workflow.py,sha256=
|
|
335
|
+
agno/run/workflow.py,sha256=cHH_ArV_Wws__8ug9Dwy3OVu7G2ND_K9E1PNdzk7CZo,25100
|
|
330
336
|
agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
|
|
331
337
|
agno/session/agent.py,sha256=8vVtwwUC5moGWdRcG99Ik6Ay7gbFRrPPnT1ncOUFQIg,10365
|
|
332
338
|
agno/session/summary.py,sha256=9JnDyQyggckd3zx6L8Q5f-lglZvrFQxvPjGU8gLCgR4,10292
|
|
333
339
|
agno/session/team.py,sha256=-MkB6qQCrnXLKko8L5s9fJOWPsjeK5Gx0SXEPoOwSFQ,13437
|
|
334
340
|
agno/session/workflow.py,sha256=nPHnh1N0SJby5JRjysCUI-kTDCelQMFfqosEnnLzPIg,19690
|
|
335
341
|
agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
|
|
336
|
-
agno/team/team.py,sha256=
|
|
342
|
+
agno/team/team.py,sha256=NrVmrnA_ykjJ6Lbhmcr6o0ep70cJTyvMNCe9aTi19CY,422758
|
|
337
343
|
agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
|
|
338
344
|
agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
|
|
339
345
|
agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
|
|
@@ -450,7 +456,7 @@ agno/tools/zendesk.py,sha256=OgvK0bQGIHnRmN8X6OxyGI7P0Si6w4sodZr6FfmNR50,3084
|
|
|
450
456
|
agno/tools/zep.py,sha256=i3yDNlVJLM0CK8SFHi-64fs0DfHMUwqu1CCrMvzJ95M,19305
|
|
451
457
|
agno/tools/zoom.py,sha256=PD3l-JJ6VK1XJLXF8ciPScS6oRH8CHl7OQtoiZq8VK0,15963
|
|
452
458
|
agno/tools/mcp/__init__.py,sha256=VqnrxQzDMGcT9gRI5sXAmZ1ccuomGNCfHYQSYxlyZaw,278
|
|
453
|
-
agno/tools/mcp/mcp.py,sha256=
|
|
459
|
+
agno/tools/mcp/mcp.py,sha256=6UIeVG-9PkvRZDqEzsOvgowkogM8ieeL2tAmt7lm-nU,13915
|
|
454
460
|
agno/tools/mcp/multi_mcp.py,sha256=uy8C8WNghTm77YtLJev5p03JErZiwpu7bO22ph8rtFg,14374
|
|
455
461
|
agno/tools/mcp/params.py,sha256=Ng9RhXeUgHCDh2mzPAKoAdsTctKfurrt5VYmbrUgfVA,666
|
|
456
462
|
agno/tools/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -462,7 +468,7 @@ agno/tools/models/nebius.py,sha256=cuSwH5Kq9Jgf9phf3Vvk4ijuZsnWwDXU2zFJn0-UU1s,4
|
|
|
462
468
|
agno/tools/streamlit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
469
|
agno/tools/streamlit/components.py,sha256=hYYyr4FRMsNDV8IgK68_oiDF-Qi9djChZmDcg3s6Uu8,4016
|
|
464
470
|
agno/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
|
-
agno/utils/agent.py,sha256=
|
|
471
|
+
agno/utils/agent.py,sha256=tS1LgMHsDntIb1iop8lVjKz_Yf32mgXRA-eyM3AxLB0,36260
|
|
466
472
|
agno/utils/audio.py,sha256=kdPMr_wYh-NyxQ-U57hyulK0Y7iIkuVinL9AQ7w64EU,1455
|
|
467
473
|
agno/utils/certs.py,sha256=Dtqmcwngq6b-27gN7Zsmo9lKlMPYd70UNexLMqpX3BE,683
|
|
468
474
|
agno/utils/code_execution.py,sha256=JAzcsuUJVO8ZVcD9AgX_O9waBegjhbrHkQZp-YZGsdA,415
|
|
@@ -498,22 +504,23 @@ agno/utils/streamlit.py,sha256=IKKOkYGqlSvW0JKlWrI2393a4DmL4gW5rW-cnEhhTZ4,17993
|
|
|
498
504
|
agno/utils/string.py,sha256=iO1etmjHVxnPMTixAKlpR1vnBnRapYL2pm_cjhS06Ww,7557
|
|
499
505
|
agno/utils/team.py,sha256=yJMQsFZFDZEoDOFCUwrLmaPtogFuuQNH-WmKG2CBZWs,5057
|
|
500
506
|
agno/utils/timer.py,sha256=Fuax69yh1cVIzCYMmJDB4HpTsPM8Iiq1VaTWz1vJtF8,1282
|
|
507
|
+
agno/utils/tokens.py,sha256=q7kXX1q_ip-A2IlIBK3DCbW2Br3llsfk-Z7B0rNOUtg,1244
|
|
501
508
|
agno/utils/tools.py,sha256=YZjA95pSNhHHcyoz5pe-Wo-yh9O2NU4Pqcbhs5kbefY,3842
|
|
502
509
|
agno/utils/web.py,sha256=JwLKspkLcuFyA19T5tf4-Rs8BGPwTEySp531A3t0sC4,655
|
|
503
510
|
agno/utils/whatsapp.py,sha256=242VwGOdbgkxVeIj4D899mpT3GnG_IpcaKnd5qebhTA,9936
|
|
504
511
|
agno/utils/yaml_io.py,sha256=cwTqCE-eBGoi87KLDcwB6iyWe0NcvEmadQjWL1cQ7jE,860
|
|
505
512
|
agno/utils/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
506
|
-
agno/utils/models/ai_foundry.py,sha256=
|
|
507
|
-
agno/utils/models/claude.py,sha256=
|
|
508
|
-
agno/utils/models/cohere.py,sha256=
|
|
509
|
-
agno/utils/models/llama.py,sha256=
|
|
510
|
-
agno/utils/models/mistral.py,sha256=
|
|
513
|
+
agno/utils/models/ai_foundry.py,sha256=tvXkvuf2Z7BEDGJYeK9wnFI6RGL0zI0QRhCE2TKLcoA,1824
|
|
514
|
+
agno/utils/models/claude.py,sha256=rfGMewOgXFRXZI0DaqEg3vJFl3tdkaSoqCQ1j4l-zVo,12660
|
|
515
|
+
agno/utils/models/cohere.py,sha256=5DFECDFPayeuUZHH6uWjP1WY_tTCzUPoaIUseGZU7KE,3595
|
|
516
|
+
agno/utils/models/llama.py,sha256=EK5M7dNXEHezUjQ2CpwUuIFUdo0apYAH7sdbj9BwZMw,2817
|
|
517
|
+
agno/utils/models/mistral.py,sha256=WFIWUOF3JlgnHIkB8ch-sz47CaAsQiOCXP7xXTR2PL8,4378
|
|
511
518
|
agno/utils/models/openai_responses.py,sha256=63f2UgDFCzrr6xQITrGtn42UUHQBcZFUUFM7o2ru7W8,5242
|
|
512
519
|
agno/utils/models/schema_utils.py,sha256=L6TkraMClI471H6xYy7V81lhHR4qQloVKCN0bF4Ajw0,5047
|
|
513
520
|
agno/utils/models/watsonx.py,sha256=fe6jN0hBvOCQurqjS6_9PIwDHt-4kVod9qW236Zs6DU,1496
|
|
514
521
|
agno/utils/print_response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
|
-
agno/utils/print_response/agent.py,sha256=
|
|
516
|
-
agno/utils/print_response/team.py,sha256=
|
|
522
|
+
agno/utils/print_response/agent.py,sha256=N0777Z2Hfq6HaRL1aRwBcZ7MHRc1rnUIRNTsgDHJV4Y,38845
|
|
523
|
+
agno/utils/print_response/team.py,sha256=DzqfuEPn_Gv50AqQ3-UhHs-b331S687XTC9xM7iHVgo,83233
|
|
517
524
|
agno/utils/print_response/workflow.py,sha256=bndej1GUbnirXihDsjewjbc4_McBWsZ3bByMk6gHhIU,78797
|
|
518
525
|
agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
|
|
519
526
|
agno/vectordb/base.py,sha256=7HeHdhR3hQtlERbCPI0Fc3L_pPKgWs4KAkEstkdNoHw,3812
|
|
@@ -569,10 +576,10 @@ agno/workflow/parallel.py,sha256=ho6WASVJGd2IK9aRjP_r3j_mEGj3JP6TRgsvIb2v-ns,373
|
|
|
569
576
|
agno/workflow/router.py,sha256=w7fPxQI2CDZp15zSZXgmvnYM5Td2FFFBrYbcXPwVb-Y,31604
|
|
570
577
|
agno/workflow/step.py,sha256=_sge_L8WBWSYJRNtgzrfCWIPjrWyani1rCRTkQZu3EM,73296
|
|
571
578
|
agno/workflow/steps.py,sha256=NXAOgQ8bssgl-6K1Fxd9zLm1m3ranPnMFJp-SM-GmA8,26706
|
|
572
|
-
agno/workflow/types.py,sha256=
|
|
579
|
+
agno/workflow/types.py,sha256=LObJ0VkUtepZ-uewv3j283S4hrCXy0eCplQzIzRG1ic,19175
|
|
573
580
|
agno/workflow/workflow.py,sha256=XjwOxrJrWUvsWJH7qYJs-0BX7z6xyzX9mbw8dMNevUg,189538
|
|
574
|
-
agno-2.3.
|
|
575
|
-
agno-2.3.
|
|
576
|
-
agno-2.3.
|
|
577
|
-
agno-2.3.
|
|
578
|
-
agno-2.3.
|
|
581
|
+
agno-2.3.3.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
582
|
+
agno-2.3.3.dist-info/METADATA,sha256=pTmqpRFJWm7QgqMipiaseaf6XXsgxAVQN7gWVgffHys,30904
|
|
583
|
+
agno-2.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
584
|
+
agno-2.3.3.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
585
|
+
agno-2.3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|