agno 2.4.5__py3-none-any.whl → 2.4.7__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 +2 -1
- agno/db/singlestore/singlestore.py +4 -5
- agno/db/surrealdb/models.py +1 -1
- agno/knowledge/chunking/agentic.py +1 -5
- agno/knowledge/chunking/code.py +1 -1
- agno/knowledge/chunking/document.py +22 -42
- agno/knowledge/chunking/fixed.py +1 -5
- agno/knowledge/chunking/markdown.py +9 -25
- agno/knowledge/chunking/recursive.py +1 -3
- agno/knowledge/chunking/row.py +3 -2
- agno/knowledge/chunking/semantic.py +1 -1
- agno/knowledge/chunking/strategy.py +19 -0
- agno/knowledge/embedder/aws_bedrock.py +325 -106
- agno/knowledge/knowledge.py +173 -14
- agno/knowledge/reader/text_reader.py +1 -1
- agno/knowledge/reranker/aws_bedrock.py +299 -0
- agno/learn/machine.py +5 -6
- agno/learn/stores/learned_knowledge.py +108 -131
- agno/run/workflow.py +3 -0
- agno/tools/mcp/mcp.py +26 -1
- agno/utils/print_response/agent.py +8 -8
- agno/utils/print_response/team.py +8 -8
- agno/vectordb/lancedb/lance_db.py +9 -9
- agno/workflow/condition.py +135 -56
- {agno-2.4.5.dist-info → agno-2.4.7.dist-info}/METADATA +34 -59
- {agno-2.4.5.dist-info → agno-2.4.7.dist-info}/RECORD +29 -28
- {agno-2.4.5.dist-info → agno-2.4.7.dist-info}/WHEEL +0 -0
- {agno-2.4.5.dist-info → agno-2.4.7.dist-info}/licenses/LICENSE +0 -0
- {agno-2.4.5.dist-info → agno-2.4.7.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agno
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.7
|
|
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
|
|
@@ -225,7 +225,7 @@ Requires-Dist: pgvector; extra == "pgvector"
|
|
|
225
225
|
Provides-Extra: chromadb
|
|
226
226
|
Requires-Dist: chromadb; extra == "chromadb"
|
|
227
227
|
Provides-Extra: lancedb
|
|
228
|
-
Requires-Dist: lancedb
|
|
228
|
+
Requires-Dist: lancedb>=0.26.0; extra == "lancedb"
|
|
229
229
|
Requires-Dist: tantivy; extra == "lancedb"
|
|
230
230
|
Provides-Extra: pylance
|
|
231
231
|
Requires-Dist: pylance; extra == "pylance"
|
|
@@ -266,7 +266,7 @@ Provides-Extra: excel
|
|
|
266
266
|
Requires-Dist: openpyxl; extra == "excel"
|
|
267
267
|
Requires-Dist: xlrd; extra == "excel"
|
|
268
268
|
Provides-Extra: markdown
|
|
269
|
-
Requires-Dist: unstructured; extra == "markdown"
|
|
269
|
+
Requires-Dist: unstructured<0.18.31; extra == "markdown"
|
|
270
270
|
Requires-Dist: markdown; extra == "markdown"
|
|
271
271
|
Requires-Dist: aiofiles; extra == "markdown"
|
|
272
272
|
Provides-Extra: chonkie
|
|
@@ -445,7 +445,7 @@ Dynamic: license-file
|
|
|
445
445
|
</div>
|
|
446
446
|
|
|
447
447
|
<p align="center">
|
|
448
|
-
Build
|
|
448
|
+
Build agents that learn.
|
|
449
449
|
</p>
|
|
450
450
|
|
|
451
451
|
<div align="center">
|
|
@@ -460,68 +460,58 @@ Dynamic: license-file
|
|
|
460
460
|
|
|
461
461
|
## What is Agno?
|
|
462
462
|
|
|
463
|
-
|
|
463
|
+
**A Python SDK for building agents that learn and improve with every interaction.**
|
|
464
464
|
|
|
465
|
-
|
|
466
|
-
|-------|--------------|
|
|
467
|
-
| **Framework** | Build agents, teams, and workflows with memory, knowledge, guardrails, and 100+ integrations |
|
|
468
|
-
| **AgentOS Runtime** | Run your system in production with a stateless, secure FastAPI backend |
|
|
469
|
-
| **Control Plane** | Test, monitor, and manage your system using the [AgentOS UI](https://os.agno.com) |
|
|
465
|
+
Most agents are stateless. They reason, respond, forget. Session history helps, but they're exactly as capable on day 1000 as they were on day 1.
|
|
470
466
|
|
|
471
|
-
|
|
467
|
+
Agno agents are different. They remember users across sessions, accumulate knowledge across conversations, and learn from decisions. Insights from one user benefit everyone.
|
|
472
468
|
|
|
473
|
-
|
|
474
|
-
- **Production-ready on day one.** Pre-built FastAPI runtime with SSE endpoints, ready to deploy.
|
|
475
|
-
- **Fast.** 529× faster instantiation than LangGraph. 24× lower memory. [See benchmarks →](#performance)
|
|
469
|
+
Everything runs in your cloud. Your data never leaves your environment.
|
|
476
470
|
|
|
477
|
-
## Example
|
|
478
|
-
|
|
479
|
-
An agent with MCP tools, persistent state, served via FastAPI:
|
|
471
|
+
## Quick Example
|
|
480
472
|
```python
|
|
481
473
|
from agno.agent import Agent
|
|
482
474
|
from agno.db.sqlite import SqliteDb
|
|
483
|
-
from agno.models.
|
|
484
|
-
from agno.os import AgentOS
|
|
485
|
-
from agno.tools.mcp import MCPTools
|
|
475
|
+
from agno.models.openai import OpenAIResponses
|
|
486
476
|
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
tools=[MCPTools(transport="streamable-http", url="https://docs.agno.com/mcp")],
|
|
492
|
-
add_history_to_context=True,
|
|
493
|
-
markdown=True,
|
|
477
|
+
agent = Agent(
|
|
478
|
+
model=OpenAIResponses(id="gpt-5.2"),
|
|
479
|
+
db=SqliteDb(db_file="tmp/agents.db"),
|
|
480
|
+
learning=True,
|
|
494
481
|
)
|
|
495
|
-
|
|
496
|
-
agent_os = AgentOS(agents=[agno_agent])
|
|
497
|
-
app = agent_os.get_app()
|
|
498
|
-
|
|
499
|
-
if __name__ == "__main__":
|
|
500
|
-
agent_os.serve(app="agno_agent:app", reload=True)
|
|
501
482
|
```
|
|
502
483
|
|
|
503
|
-
|
|
484
|
+
One line. Your agent now remembers users, accumulates knowledge, and improves over time.
|
|
485
|
+
|
|
486
|
+
## Production Stack
|
|
504
487
|
|
|
505
|
-
|
|
488
|
+
| Layer | What it does |
|
|
489
|
+
|-------|--------------|
|
|
490
|
+
| **SDK** | Build agents with learning, tools, knowledge, and guardrails |
|
|
491
|
+
| **Runtime** | Run in production using [AgentOS](https://docs.agno.com/agent-os/introduction) |
|
|
492
|
+
| **Control Plane** | Monitor and manage via the [AgentOS UI](https://os.agno.com) |
|
|
506
493
|
|
|
507
494
|
## Features
|
|
508
495
|
|
|
496
|
+
**Learning**
|
|
497
|
+
- User profiles that persist across sessions
|
|
498
|
+
- User memories that accumulate over time
|
|
499
|
+
- Learned knowledge that transfers across users
|
|
500
|
+
- Always or agentic learning modes
|
|
501
|
+
|
|
509
502
|
**Core**
|
|
510
503
|
- Model-agnostic: OpenAI, Anthropic, Google, local models
|
|
511
504
|
- Type-safe I/O with `input_schema` and `output_schema`
|
|
512
505
|
- Async-first, built for long-running tasks
|
|
513
506
|
- Natively multimodal (text, images, audio, video, files)
|
|
514
507
|
|
|
515
|
-
**
|
|
516
|
-
- Persistent storage for session history and state
|
|
517
|
-
- User memory across sessions
|
|
508
|
+
**Knowledge**
|
|
518
509
|
- Agentic RAG with 20+ vector stores, hybrid search, reranking
|
|
519
|
-
-
|
|
510
|
+
- Persistent storage for session history and state
|
|
520
511
|
|
|
521
512
|
**Orchestration**
|
|
522
513
|
- Human-in-the-loop (confirmations, approvals, overrides)
|
|
523
514
|
- Guardrails for validation and security
|
|
524
|
-
- Pre/post hooks for the agent lifecycle
|
|
525
515
|
- First-class MCP and A2A support
|
|
526
516
|
- 100+ built-in toolkits
|
|
527
517
|
|
|
@@ -529,27 +519,12 @@ https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
|
|
|
529
519
|
- Ready-to-use FastAPI runtime
|
|
530
520
|
- Integrated control plane UI
|
|
531
521
|
- Evals for accuracy, performance, latency
|
|
532
|
-
- Durable execution for resumable workflows
|
|
533
|
-
- RBAC and per-agent permissions
|
|
534
522
|
|
|
535
523
|
## Getting Started
|
|
536
524
|
|
|
537
|
-
1. Follow the [quickstart
|
|
538
|
-
2. Browse the [cookbook](https://github.com/agno-agi/agno/tree/main/cookbook)
|
|
539
|
-
3. Read the [docs](https://docs.agno.com)
|
|
540
|
-
|
|
541
|
-
## Performance
|
|
542
|
-
|
|
543
|
-
Agent workloads spawn hundreds of instances. Stateless, horizontal scalability isn't optional.
|
|
544
|
-
|
|
545
|
-
| Metric | Agno | LangGraph | PydanticAI | CrewAI |
|
|
546
|
-
|--------|------|-----------|------------|--------|
|
|
547
|
-
| Instantiation | **3μs** | 1,587μs (529×) | 170μs (57×) | 210μs (70×) |
|
|
548
|
-
| Memory | **6.6 KiB** | 161 KiB (24×) | 29 KiB (4×) | 66 KiB (10×) |
|
|
549
|
-
|
|
550
|
-
<sub>Apple M4 MacBook Pro, Oct 2025. [Run benchmarks yourself →](https://github.com/agno-agi/agno/tree/main/cookbook/12_evals/performance)</sub>
|
|
551
|
-
|
|
552
|
-
https://github.com/user-attachments/assets/54b98576-1859-4880-9f2d-15e1a426719d
|
|
525
|
+
1. Follow the [quickstart](https://docs.agno.com/get-started/quickstart)
|
|
526
|
+
2. Browse the [cookbook](https://github.com/agno-agi/agno/tree/main/cookbook)
|
|
527
|
+
3. Read the [docs](https://docs.agno.com)
|
|
553
528
|
|
|
554
529
|
## IDE Integration
|
|
555
530
|
|
|
@@ -561,7 +536,7 @@ Also works with VSCode, Windsurf, and similar tools.
|
|
|
561
536
|
|
|
562
537
|
## Contributing
|
|
563
538
|
|
|
564
|
-
|
|
539
|
+
See the [contributing guide](https://github.com/agno-agi/agno/blob/v2.0/CONTRIBUTING.md).
|
|
565
540
|
|
|
566
541
|
## Telemetry
|
|
567
542
|
|
|
@@ -6,7 +6,7 @@ agno/media.py,sha256=PisfrNwkx2yVOW8p6LXlV237jI06Y6kGjd7wUMk5170,17121
|
|
|
6
6
|
agno/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
agno/table.py,sha256=9hHFnInNsrj0ZKtWjGDP5c6kbmNdtQvDDYT2j2CZJ6o,198
|
|
8
8
|
agno/agent/__init__.py,sha256=YwN1bvBECSRRQ9mOCZ40eCO4WN5xEPEh0jxWyc83vX4,1190
|
|
9
|
-
agno/agent/agent.py,sha256=
|
|
9
|
+
agno/agent/agent.py,sha256=mu6uYbs5G31HFfMEM5qmmD6r7ic5OTRKsiOVgjnYLEg,563740
|
|
10
10
|
agno/agent/remote.py,sha256=3PvPEXLH4QAGVsPnoD0qKDv05swRZpB0gw9bQDCJiLw,19667
|
|
11
11
|
agno/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
agno/api/agent.py,sha256=fKlQ62E_C9Rjd7Zus3Gs3R1RG-IhzFV-ICpkb6SLqYc,932
|
|
@@ -94,7 +94,7 @@ agno/db/schemas/memory.py,sha256=soOeuQgLYHng0qZxzrRHf1lN574IW55lXGP403Qn1oY,207
|
|
|
94
94
|
agno/db/schemas/metrics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
95
|
agno/db/singlestore/__init__.py,sha256=dufbaod8ZZIeZIVi0hYJQ8Eu2DfIfWdIy00cpqAsx9U,87
|
|
96
96
|
agno/db/singlestore/schemas.py,sha256=wPzSrSQ3hVdUw385nmr8UmurHV6vtpAVuhYUlaLh1K4,9750
|
|
97
|
-
agno/db/singlestore/singlestore.py,sha256=
|
|
97
|
+
agno/db/singlestore/singlestore.py,sha256=zCqDFd-YHPj7TsOUEr5cC7B67DtceKOI06wGjlmpnKo,121934
|
|
98
98
|
agno/db/singlestore/utils.py,sha256=vJ6QM-wbJBzA8l5ULYbJ5KLB9c3-GZqtb0NWdy5gg2c,14225
|
|
99
99
|
agno/db/sqlite/__init__.py,sha256=09V3i4y0-tBjt60--57ivZ__SaaS67GCsDT4Apzv-5Y,138
|
|
100
100
|
agno/db/sqlite/async_sqlite.py,sha256=BzvBibnsK654K48gx-aWzV7FhmYNS324JBUnoldILTk,136969
|
|
@@ -103,7 +103,7 @@ agno/db/sqlite/sqlite.py,sha256=0GQR3FS9UlDxFQs1VF_t5OXhw7FBccfL6CO8JZE7CKY,1765
|
|
|
103
103
|
agno/db/sqlite/utils.py,sha256=PZp-g4oUf6Iw1kuDAmOpIBtfyg4poKiG_DxXP4EonFI,15721
|
|
104
104
|
agno/db/surrealdb/__init__.py,sha256=C8qp5-Nx9YnSmgKEtGua-sqG_ntCXONBw1qqnNyKPqI,75
|
|
105
105
|
agno/db/surrealdb/metrics.py,sha256=oKDRyjRQ6KR3HaO8zDHQLVMG7-0NDkOFOKX5I7mD5FA,10336
|
|
106
|
-
agno/db/surrealdb/models.py,sha256=
|
|
106
|
+
agno/db/surrealdb/models.py,sha256=2x0HQSifkxVhQg2eJyAnRyBQASY09Rgbx3HACC_XpqQ,12887
|
|
107
107
|
agno/db/surrealdb/queries.py,sha256=s__yJSFIx387IEflcDdti7T5j6H9NX_-zIj13F9CN9s,2051
|
|
108
108
|
agno/db/surrealdb/surrealdb.py,sha256=RpjWArgMSzRE5MCclGVh-0d3T2bYmIIRB-1mJwHhgSo,77128
|
|
109
109
|
agno/db/surrealdb/utils.py,sha256=PcZo_cTy-jI59I-XhzAomRLdV9-m0irtO4C-AYGSghs,5405
|
|
@@ -127,24 +127,24 @@ agno/integrations/discord/client.py,sha256=HbXQHHOKKSVFZs0sIJlzoW9bLigbBgOE2kP0I
|
|
|
127
127
|
agno/knowledge/__init__.py,sha256=MTLKRRh6eqz-w_gw56rqdwV9FoeE9zjX8xYUCCdYg8A,243
|
|
128
128
|
agno/knowledge/content.py,sha256=q2bjcjDhfge_UrQAcygrv5R9ZTk7vozzKnQpatDQWRo,2295
|
|
129
129
|
agno/knowledge/filesystem.py,sha256=zq7xMDkH64x4UM9jcKLIBmPOJcrud2e-lb-pMtaFUSI,15102
|
|
130
|
-
agno/knowledge/knowledge.py,sha256=
|
|
130
|
+
agno/knowledge/knowledge.py,sha256=Gm37EALvmgTm-PeIqPpWYq-vGkTqtkgOuNHCJvXyqwo,221034
|
|
131
131
|
agno/knowledge/protocol.py,sha256=_hSe0czvTOmu9_NtzsaOxDCnTMYklObxYTphQB3pZ9M,4248
|
|
132
132
|
agno/knowledge/types.py,sha256=4NnkL_h2W-7GQnHW-yIqMNPUCWLzo5qBXF99gfsMe08,773
|
|
133
133
|
agno/knowledge/utils.py,sha256=GJHL1vAOrD6KFEpOiN4Gsgz70fRG0E-jooKIBdfq4zI,9853
|
|
134
134
|
agno/knowledge/chunking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
-
agno/knowledge/chunking/agentic.py,sha256=
|
|
136
|
-
agno/knowledge/chunking/code.py,sha256=
|
|
137
|
-
agno/knowledge/chunking/document.py,sha256=
|
|
138
|
-
agno/knowledge/chunking/fixed.py,sha256=
|
|
139
|
-
agno/knowledge/chunking/markdown.py,sha256=
|
|
140
|
-
agno/knowledge/chunking/recursive.py,sha256=
|
|
141
|
-
agno/knowledge/chunking/row.py,sha256=
|
|
142
|
-
agno/knowledge/chunking/semantic.py,sha256=
|
|
143
|
-
agno/knowledge/chunking/strategy.py,sha256=
|
|
135
|
+
agno/knowledge/chunking/agentic.py,sha256=5gQFL0OCGlYY_c9_1RmcCNSRixFSQOxc6FCDqpS7xTM,3038
|
|
136
|
+
agno/knowledge/chunking/code.py,sha256=mlr5mcaC-5HHfiVvigsBtxcFQ77teFe0ArZx2F-oA10,3572
|
|
137
|
+
agno/knowledge/chunking/document.py,sha256=aEl_n3EOZbSGUaxABgF8Up_QL1hFb1U6SDEhq1jX5N8,5872
|
|
138
|
+
agno/knowledge/chunking/fixed.py,sha256=Boa64-g6xHoMqIeGZwvjkWy0PrkByP00NRwZ2EwXia4,2241
|
|
139
|
+
agno/knowledge/chunking/markdown.py,sha256=AOOaqFLRFnXPMVQ7oingA_zy_LPaerNpPlsx_p3MON4,14179
|
|
140
|
+
agno/knowledge/chunking/recursive.py,sha256=sU-1tlWdeJ5sh2_R3HM0e0rrEFWIV12mqR0TgPx9uZY,2320
|
|
141
|
+
agno/knowledge/chunking/row.py,sha256=k3-kI33n2a4Pe5b66_WUU2DLgw-0Me_s30WKptTjwEk,1477
|
|
142
|
+
agno/knowledge/chunking/semantic.py,sha256=saVCSWjy4ZC44UWsTwUt25FPjemK4oLZgZkPt8JdZpg,7270
|
|
143
|
+
agno/knowledge/chunking/strategy.py,sha256=M8-2i5uXZCEYHswuzLcyAdZL1cgczd7-SAK3-gDp2nE,8102
|
|
144
144
|
agno/knowledge/document/__init__.py,sha256=vxMAu103larPlcpJFG3sBg-sCATf-LZZO_SlOwlEY5E,81
|
|
145
145
|
agno/knowledge/document/base.py,sha256=kvoLSAxc8snrayo_-C6L3HxJVXwZiXd7Maq6VToLgfg,2087
|
|
146
146
|
agno/knowledge/embedder/__init__.py,sha256=RdjcB1qoXuGVLlIkD-hn3B4zs8ycabmCVRmZsG3RhCQ,81
|
|
147
|
-
agno/knowledge/embedder/aws_bedrock.py,sha256=
|
|
147
|
+
agno/knowledge/embedder/aws_bedrock.py,sha256=qTOt1NxIzF69mJvOuK9WHecGqkJjv23a7jnwxUj-iFg,23247
|
|
148
148
|
agno/knowledge/embedder/azure_openai.py,sha256=Fv-Yn7eHZnw3qhVU6AktLpj8kYy3E7ynLPOYAJryCYs,8521
|
|
149
149
|
agno/knowledge/embedder/base.py,sha256=PUyo0zzk1TlImKsmWORLhc74rNSEKIQcMcjP1sE7Pyk,746
|
|
150
150
|
agno/knowledge/embedder/cohere.py,sha256=riT-Q7sGaG-BgkYtaq9ONXLuoUt99TncOWLzfOSWwtE,14499
|
|
@@ -177,7 +177,7 @@ agno/knowledge/reader/pptx_reader.py,sha256=wk3gSEhxJl36jlbNYCDIyKXjx_sy7r4xiRMa
|
|
|
177
177
|
agno/knowledge/reader/reader_factory.py,sha256=Sl8KbeRJW1vAbxvK8imnS3Wae5zRsB1zvYN_50DPjO0,17349
|
|
178
178
|
agno/knowledge/reader/s3_reader.py,sha256=F1glvjOpArXPSN8uCdjtnEe-S8HTJ-w7Av34bsFa7-g,3279
|
|
179
179
|
agno/knowledge/reader/tavily_reader.py,sha256=LpKdMb9Z6UpDyNq137voesolGE8uCGjqf398JsQqkgY,7228
|
|
180
|
-
agno/knowledge/reader/text_reader.py,sha256=
|
|
180
|
+
agno/knowledge/reader/text_reader.py,sha256=RNiH-vkAyxR7bTsmmxDwZxmFWnOLYgStvN2XFonoA7o,4607
|
|
181
181
|
agno/knowledge/reader/web_search_reader.py,sha256=bhFJqqlaRxJSQYE1oMlUiImW4DriOH1GwS5MAkBXyHA,12118
|
|
182
182
|
agno/knowledge/reader/website_reader.py,sha256=B64_xoH3Mlfweyj96msTiIW42-aN_OOAfhNkZyWIzmU,19431
|
|
183
183
|
agno/knowledge/reader/wikipedia_reader.py,sha256=C5aMlTwRHRW7FFh2c-JKZLlX5l0PzW6khq5Tu37FwbU,3137
|
|
@@ -188,6 +188,7 @@ agno/knowledge/remote_content/__init__.py,sha256=3zIQf3-iUK0Jy3_DtrmFhJSPol-DOSQ
|
|
|
188
188
|
agno/knowledge/remote_content/config.py,sha256=vRCGYH_yvktB22QG6bDP4UXMitF0y2Riddkgw8xCPsk,7833
|
|
189
189
|
agno/knowledge/remote_content/remote_content.py,sha256=0LtdtGHx-n9l12qDvxVYWb6Nc0907HVc-RcRQtrM7h4,5731
|
|
190
190
|
agno/knowledge/reranker/__init__.py,sha256=6EK9EUQQY0ar-Jnev4hmlNyq2GwS_6UDMJXD2IBcFvE,74
|
|
191
|
+
agno/knowledge/reranker/aws_bedrock.py,sha256=d1ps7rvOz2FSQFZe1qruKptO6BX5c2elWe_423ky7x8,10600
|
|
191
192
|
agno/knowledge/reranker/base.py,sha256=GsPcMmBiI5gOX8XABpmQNeP478mp5ma-W-1n37P0-QM,376
|
|
192
193
|
agno/knowledge/reranker/cohere.py,sha256=2Be5blVyeZ3vYlnFa2NYvJuytjaCB8G2OWJ11pQz7vQ,2178
|
|
193
194
|
agno/knowledge/reranker/infinity.py,sha256=N9geg9xZqRdJZksfQcvbGJgMymXrQVJl_K5KICWqH8o,7193
|
|
@@ -195,13 +196,13 @@ agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_Uj
|
|
|
195
196
|
agno/learn/__init__.py,sha256=w4uS6ZDzfYyrYI9FjDP5mlYi6slCvU0XZ6jdV3HFSf8,1624
|
|
196
197
|
agno/learn/config.py,sha256=GxysFhbix8RdyDf_2kORTbcLUSdzRJfjEG-2y29OEkk,15791
|
|
197
198
|
agno/learn/curate.py,sha256=ywbtEkN9T1Bl1eJ794L24zLb_BX5H65bebjh4su1lvc,5248
|
|
198
|
-
agno/learn/machine.py,sha256=
|
|
199
|
+
agno/learn/machine.py,sha256=I6tJFrNUolnjDluOurBr0wp0Q411B-B2RBTMjRJeEDY,25516
|
|
199
200
|
agno/learn/schemas.py,sha256=Qb9TRITzXJ6QNciRAz7ijrER11hmYmzzC2vxs8M_USo,40491
|
|
200
201
|
agno/learn/utils.py,sha256=dUL_oKWHPyUWF5e2muJyNo9W4Y7fwePESI_APQUZ12g,5672
|
|
201
202
|
agno/learn/stores/__init__.py,sha256=c5kC8X5bgZwwRG7epKU5IHdJ-eA9qKcC9G756Xrk2CA,1306
|
|
202
203
|
agno/learn/stores/decision_log.py,sha256=gzGhHKe8YZ3I8C_xuTJzAobUmVQRhrFZSZ5W9pyHxis,37933
|
|
203
204
|
agno/learn/stores/entity_memory.py,sha256=6liU6aoR7C2tI91fgU2BUChtTYlCLM1dH4Ad6Iu7dOY,117078
|
|
204
|
-
agno/learn/stores/learned_knowledge.py,sha256=
|
|
205
|
+
agno/learn/stores/learned_knowledge.py,sha256=raSP6T4zEEYRzEtepA4Vi042yqZpWbM7mIcPSFZiFh8,57001
|
|
205
206
|
agno/learn/stores/protocol.py,sha256=SaB76BIXCQMTcEHQDNxUxPnOE2Jx9MMPj3tNsk9_VJk,3324
|
|
206
207
|
agno/learn/stores/session_context.py,sha256=OQFk4OfYmHSNsytTfmm_4DJNTptNoDHWfqGnBHh06zU,48128
|
|
207
208
|
agno/learn/stores/user_memory.py,sha256=le3Vi1hsokopWeMkme9t-ju6GCP1w6z16iJ6Mi6hKdQ,55648
|
|
@@ -401,7 +402,7 @@ agno/run/cancel.py,sha256=Tyxg4lxwSvO2wSZDG4OF82ORQU6MYBu94YLqrEnK09Y,3019
|
|
|
401
402
|
agno/run/messages.py,sha256=rAC4CLW-xBA6qFS1BOvcjJ9j_qYf0a7sX1mcdY04zMU,1126
|
|
402
403
|
agno/run/requirement.py,sha256=5M_L-3nKLPDS0tUxTbFNvgXgWfWUyEohQz_3bxNc39M,6817
|
|
403
404
|
agno/run/team.py,sha256=F3IRagtwuXil-wizeo9LVuv5jhS7R90nAleO5kuWFR4,30764
|
|
404
|
-
agno/run/workflow.py,sha256=
|
|
405
|
+
agno/run/workflow.py,sha256=s8Q6jZ48E6GXQ7DiWni91s041YQMhC-tbQ-JKoL6WPk,25260
|
|
405
406
|
agno/run/cancellation_management/__init__.py,sha256=tA_u4MeG2dgm8cWJRXy0X6HF4mv6Kc55gykoSnuMPf0,406
|
|
406
407
|
agno/run/cancellation_management/base.py,sha256=nNh5yqfjp4Bpn03RE7T2jzLbzvY007ckzGhd-XKmZpk,2408
|
|
407
408
|
agno/run/cancellation_management/in_memory_cancellation_manager.py,sha256=p04IxrXG8FcHG3X-YS-ApNAdVj8kY1ZKBeUavdypZjM,3956
|
|
@@ -544,7 +545,7 @@ agno/tools/zendesk.py,sha256=OgvK0bQGIHnRmN8X6OxyGI7P0Si6w4sodZr6FfmNR50,3084
|
|
|
544
545
|
agno/tools/zep.py,sha256=i3yDNlVJLM0CK8SFHi-64fs0DfHMUwqu1CCrMvzJ95M,19305
|
|
545
546
|
agno/tools/zoom.py,sha256=PD3l-JJ6VK1XJLXF8ciPScS6oRH8CHl7OQtoiZq8VK0,15963
|
|
546
547
|
agno/tools/mcp/__init__.py,sha256=VqnrxQzDMGcT9gRI5sXAmZ1ccuomGNCfHYQSYxlyZaw,278
|
|
547
|
-
agno/tools/mcp/mcp.py,sha256=
|
|
548
|
+
agno/tools/mcp/mcp.py,sha256=Id00Kni0eONxr_gcWy-_cV3jfCt-T2ZkIFg1REDcCjQ,27524
|
|
548
549
|
agno/tools/mcp/multi_mcp.py,sha256=lYO_euSw_gJdky6cZyJtQ53s1igrsMaxR-bL8DJMF60,25659
|
|
549
550
|
agno/tools/mcp/params.py,sha256=Ng9RhXeUgHCDh2mzPAKoAdsTctKfurrt5VYmbrUgfVA,666
|
|
550
551
|
agno/tools/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -614,8 +615,8 @@ agno/utils/models/openai_responses.py,sha256=63f2UgDFCzrr6xQITrGtn42UUHQBcZFUUFM
|
|
|
614
615
|
agno/utils/models/schema_utils.py,sha256=L6TkraMClI471H6xYy7V81lhHR4qQloVKCN0bF4Ajw0,5047
|
|
615
616
|
agno/utils/models/watsonx.py,sha256=fe6jN0hBvOCQurqjS6_9PIwDHt-4kVod9qW236Zs6DU,1496
|
|
616
617
|
agno/utils/print_response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
|
-
agno/utils/print_response/agent.py,sha256=
|
|
618
|
-
agno/utils/print_response/team.py,sha256=
|
|
618
|
+
agno/utils/print_response/agent.py,sha256=NIDrS4zl6FzFyAgMKBF_6V9A9ELUPwMEev73bfddkrc,40416
|
|
619
|
+
agno/utils/print_response/team.py,sha256=cODB1m0AxVlnLseTt2_dlZl02-rFPtwvp-8TPdD_C4c,88755
|
|
619
620
|
agno/utils/print_response/workflow.py,sha256=pZ7DmJaLx0FWNzXJCKs6gplmA0XAzqxZK1nLQNfePW0,78707
|
|
620
621
|
agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
|
|
621
622
|
agno/vectordb/base.py,sha256=0AmdEM2DIE2WdRJIcISEfaQgeYIDpZrMfbnPPI2HrE4,4344
|
|
@@ -633,7 +634,7 @@ agno/vectordb/clickhouse/index.py,sha256=_YW-8AuEYy5kzOHi0zIzjngpQPgJOBdSrn9BfEL
|
|
|
633
634
|
agno/vectordb/couchbase/__init__.py,sha256=dKZkcQLFN4r2_NIdXby4inzAAn4BDMlb9T2BW_i0_gQ,93
|
|
634
635
|
agno/vectordb/couchbase/couchbase.py,sha256=SDyNQGq_wD5mkUIQGkYtR7AZCUxf7fIw50YmI0N1T5U,65636
|
|
635
636
|
agno/vectordb/lancedb/__init__.py,sha256=tb9qvinKyWMTLjJYMwW_lhYHFvrfWTfHODtBfMj-NLE,111
|
|
636
|
-
agno/vectordb/lancedb/lance_db.py,sha256=
|
|
637
|
+
agno/vectordb/lancedb/lance_db.py,sha256=tbvXsEVcIsOjL6Suh9HUDcIvbWc8WNXQSX8v1n57pmA,41654
|
|
637
638
|
agno/vectordb/langchaindb/__init__.py,sha256=BxGs6tcEKTiydbVJL3P5djlnafS5Bbgql3u1k6vhW2w,108
|
|
638
639
|
agno/vectordb/langchaindb/langchaindb.py,sha256=AS-Jrh7gXKYkSHFiXKiD0kwL-FUFz10VbYksm8UEBAU,6391
|
|
639
640
|
agno/vectordb/lightrag/__init__.py,sha256=fgQpA8pZW-jEHI91SZ_xgmROmv14oKdwCQZ8LpyipaE,84
|
|
@@ -665,7 +666,7 @@ agno/vectordb/weaviate/index.py,sha256=y4XYPRZFksMfrrF85B4hn5AtmXM4SH--4CyLo27EH
|
|
|
665
666
|
agno/vectordb/weaviate/weaviate.py,sha256=B5mP2uGIbgMA1uP_JGWpjAJ7IUGm4ZHpVke_lQY0it4,40639
|
|
666
667
|
agno/workflow/__init__.py,sha256=4aTXmTeOFofdNm-LgvjlN0y78vmsCpQDwYvke-f34E4,761
|
|
667
668
|
agno/workflow/agent.py,sha256=PSt7X8BOgO9Rmh1YnT3I9HBq360IjdXfaKNzffqqiRw,12173
|
|
668
|
-
agno/workflow/condition.py,sha256=
|
|
669
|
+
agno/workflow/condition.py,sha256=Wur-Q6r5Vl4KkthaoBpPn06Duan5Zk49aJIsJLiLo-g,37410
|
|
669
670
|
agno/workflow/loop.py,sha256=9yX_JY3b14I5Rem4QtxUIj1hF1gFC-ICshv5kmnPIf0,34048
|
|
670
671
|
agno/workflow/parallel.py,sha256=PYdnWYimIBvHqzgQ13EpvITnmjCpogDOAaPqIrDmtTs,37057
|
|
671
672
|
agno/workflow/remote.py,sha256=-turwcZ0Nm0rsltJAFfG6IzyhTujJZs9lPoV-W2anUs,14144
|
|
@@ -674,8 +675,8 @@ agno/workflow/step.py,sha256=AgSugOOoWidfZGFtR5PMpgWSBpIeUQB45vmaUDnV7E8,77919
|
|
|
674
675
|
agno/workflow/steps.py,sha256=p1RdyTZIKDYOPdxU7FbsX_vySWehPWaobge76Q_UDac,26462
|
|
675
676
|
agno/workflow/types.py,sha256=t4304WCKB19QFdV3ixXZICcU8wtBza4EBCIz5Ve6MSQ,18035
|
|
676
677
|
agno/workflow/workflow.py,sha256=S4Iwx3LtpeE_XZ61slYvnM90BdnGhW6Gfax_BKEUG68,218609
|
|
677
|
-
agno-2.4.
|
|
678
|
-
agno-2.4.
|
|
679
|
-
agno-2.4.
|
|
680
|
-
agno-2.4.
|
|
681
|
-
agno-2.4.
|
|
678
|
+
agno-2.4.7.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
679
|
+
agno-2.4.7.dist-info/METADATA,sha256=7c2VNjm7zuh4jnQzTVP3MBRUKGvUlDc7I7VprKOe_XQ,21116
|
|
680
|
+
agno-2.4.7.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
681
|
+
agno-2.4.7.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
682
|
+
agno-2.4.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|