agno 2.1.10__py3-none-any.whl → 2.2.1__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.
Files changed (45) hide show
  1. agno/agent/agent.py +1594 -1248
  2. agno/knowledge/knowledge.py +11 -0
  3. agno/knowledge/reader/pptx_reader.py +101 -0
  4. agno/knowledge/reader/reader_factory.py +14 -0
  5. agno/knowledge/types.py +1 -0
  6. agno/models/anthropic/claude.py +2 -2
  7. agno/models/base.py +4 -4
  8. agno/models/ollama/chat.py +7 -2
  9. agno/os/app.py +1 -1
  10. agno/os/interfaces/a2a/router.py +2 -2
  11. agno/os/interfaces/agui/router.py +2 -2
  12. agno/os/router.py +7 -7
  13. agno/os/routers/evals/schemas.py +31 -31
  14. agno/os/routers/health.py +6 -2
  15. agno/os/routers/knowledge/schemas.py +49 -47
  16. agno/os/routers/memory/schemas.py +16 -16
  17. agno/os/routers/metrics/schemas.py +16 -16
  18. agno/os/routers/session/session.py +382 -7
  19. agno/os/schema.py +254 -231
  20. agno/os/utils.py +1 -1
  21. agno/run/agent.py +54 -1
  22. agno/run/team.py +48 -0
  23. agno/run/workflow.py +15 -5
  24. agno/session/summary.py +45 -13
  25. agno/session/team.py +90 -5
  26. agno/team/team.py +1130 -849
  27. agno/utils/agent.py +372 -0
  28. agno/utils/events.py +144 -2
  29. agno/utils/message.py +60 -0
  30. agno/utils/print_response/agent.py +10 -6
  31. agno/utils/print_response/team.py +6 -4
  32. agno/utils/print_response/workflow.py +7 -5
  33. agno/utils/team.py +9 -8
  34. agno/workflow/condition.py +17 -9
  35. agno/workflow/loop.py +18 -10
  36. agno/workflow/parallel.py +14 -6
  37. agno/workflow/router.py +16 -8
  38. agno/workflow/step.py +14 -6
  39. agno/workflow/steps.py +14 -6
  40. agno/workflow/workflow.py +331 -123
  41. {agno-2.1.10.dist-info → agno-2.2.1.dist-info}/METADATA +63 -23
  42. {agno-2.1.10.dist-info → agno-2.2.1.dist-info}/RECORD +45 -43
  43. {agno-2.1.10.dist-info → agno-2.2.1.dist-info}/WHEEL +0 -0
  44. {agno-2.1.10.dist-info → agno-2.2.1.dist-info}/licenses/LICENSE +0 -0
  45. {agno-2.1.10.dist-info → agno-2.2.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agno
3
- Version: 2.1.10
3
+ Version: 2.2.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
@@ -56,6 +56,7 @@ Requires-Dist: ddgs; extra == "integration-tests"
56
56
  Requires-Dist: yfinance; extra == "integration-tests"
57
57
  Requires-Dist: sqlalchemy; extra == "integration-tests"
58
58
  Requires-Dist: Pillow; extra == "integration-tests"
59
+ Requires-Dist: fastmcp; extra == "integration-tests"
59
60
  Provides-Extra: opentelemetry
60
61
  Requires-Dist: opentelemetry-sdk; extra == "opentelemetry"
61
62
  Requires-Dist: opentelemetry-exporter-otlp; extra == "opentelemetry"
@@ -237,6 +238,8 @@ Requires-Dist: pypdf; extra == "pdf"
237
238
  Requires-Dist: rapidocr_onnxruntime; extra == "pdf"
238
239
  Provides-Extra: docx
239
240
  Requires-Dist: python-docx; extra == "docx"
241
+ Provides-Extra: pptx
242
+ Requires-Dist: python-pptx; extra == "pptx"
240
243
  Provides-Extra: text
241
244
  Requires-Dist: aiofiles; extra == "text"
242
245
  Provides-Extra: csv
@@ -345,6 +348,7 @@ Requires-Dist: agno[upstash]; extra == "vectordbs"
345
348
  Provides-Extra: knowledge
346
349
  Requires-Dist: agno[pdf]; extra == "knowledge"
347
350
  Requires-Dist: agno[docx]; extra == "knowledge"
351
+ Requires-Dist: agno[pptx]; extra == "knowledge"
348
352
  Requires-Dist: agno[text]; extra == "knowledge"
349
353
  Requires-Dist: agno[csv]; extra == "knowledge"
350
354
  Requires-Dist: agno[markdown]; extra == "knowledge"
@@ -387,9 +391,30 @@ Dynamic: license-file
387
391
 
388
392
  ## What is Agno?
389
393
 
390
- Agno is the multi-agent framework, runtime and UI built for speed.
394
+ Agno is a multi-agent framework, runtime and control plane. Built for speed, privacy, and scale.
391
395
 
392
- Use it to build multi-agent systems with memory, knowledge, human in the loop and MCP support. You can orchestrate agents as multi-agent teams (more autonomy) or step-based agentic workflows (more control).
396
+ It provides a rich set of primitives for building:
397
+
398
+ - **Agents** with persistent state, knowledge retrieval, memory, and advanced features like human-in-the-loop, guardrails, dynamic context management and best-in-class MCP support.
399
+ - **Multi-Agent Teams** that operate autonomously under a team leader that maintains shared state and context.
400
+ - **Step-based Workflows** for controlled, deterministic execution. Steps can be Agents, Teams, or a regular python functions and can run sequentially, in parallel, in loops, branches, or conditionally.
401
+
402
+ Agno also provides a FastAPI-powered runtime for serving multi-agent systems in production, covering the entire {build → run → deploy} lifecycle. Building Agents is easy, running them is hard, and that's where Agno shines.
403
+
404
+ ## Getting started
405
+
406
+ If you're new to Agno, follow our [quickstart](https://docs.agno.com/introduction/quickstart) to build your first Agent and chat with it using the AgentOS UI.
407
+
408
+ After that, checkout the [examples gallery](https://docs.agno.com/examples/introduction) and build real-world applications with Agno.
409
+
410
+ ## Documentation, Community & More Examples
411
+
412
+ - Docs: <a href="https://docs.agno.com" target="_blank" rel="noopener noreferrer">docs.agno.com</a>
413
+ - Cookbook: <a href="https://github.com/agno-agi/agno/tree/main/cookbook" target="_blank" rel="noopener noreferrer">Cookbook</a>
414
+ - Community forum: <a href="https://community.agno.com/" target="_blank" rel="noopener noreferrer">community.agno.com</a>
415
+ - Discord: <a href="https://discord.gg/4MtYHHrgA8" target="_blank" rel="noopener noreferrer">discord</a>
416
+
417
+ ## Example
393
418
 
394
419
  Here’s an example of an Agent that connects to an MCP server, manages conversation state in a database, and is served using a FastAPI application that you can interact with using the [AgentOS UI](https://os.agno.com).
395
420
 
@@ -424,23 +449,51 @@ if __name__ == "__main__":
424
449
  agent_os.serve(app="agno_agent:app", reload=True)
425
450
  ```
426
451
 
427
- ## What is the AgentOS?
452
+ ## Designed for Agent Engineering
453
+
454
+ Agno is a remarkably feature-rich framework, purpose-built for large-scale multi-agent deployments.
428
455
 
429
- AgentOS is a high-performance runtime for multi-agent systems. Key features include:
456
+ | **Category** | **Feature** | **Description** |
457
+ |---------------|-------------|-----------------|
458
+ | **Core Intelligence** | **Model Agnostic** | Works with any model provider so you can use your favorite LLMs. |
459
+ | | **Type Safe** | Enforce structured I/O through `input_schema` and `output_schema` for predictable, composable behavior. |
460
+ | | **Dynamic Context Engineering** | Inject variables, state, and retrieved data on the fly into context. Perfect for dependency-driven agents. |
461
+ | **Memory, Knowledge, and Persistence** | **Persistent Storage** | Give your Agents, Teams, and Workflows a database to persist session history, state, and messages. |
462
+ | | **User Memory** | Built-in memory system that allows Agents to recall user-specific context across sessions. |
463
+ | | **Agentic RAG** | Connect to 20+ vector stores (called **Knowledge** in Agno) with hybrid search + reranking out of the box. |
464
+ | | **Culture (Collective Memory)** | Shared knowledge that compounds across agents and time. |
465
+ | **Execution & Control** | **Human-in-the-Loop** | Native support for confirmations, manual overrides, and external tool execution. |
466
+ | | **Guardrails** | Built-in safeguards for validation, security, and prompt protection. |
467
+ | | **Agent Lifecycle Hooks** | Pre- and post-hooks to validate or transform inputs and outputs. |
468
+ | | **MCP Integration** | First-class support for the Model Context Protocol (MCP) to connect Agents with external systems. |
469
+ | | **Toolkits** | 100+ built-in toolkits with thousands of tools, ready for use across data, code, web, and enterprise APIs. |
470
+ | **Runtime & Evaluation** | **Runtime** | Pre-built FastAPI based runtime with SSE compatible endpoints, ready for production on day 1. |
471
+ | | **Control Plane (UI)** | Integrated interface to visualize, monitor, and debug agent activity in real time. |
472
+ | | **Natively Multimodal** | Agents can process and generate text, images, audio, video, and files. |
473
+ | | **Evals** | Measure your Agents' Accuracy, Performance, and Reliability. |
474
+ | **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. |
475
+ | | **Data Governance** | Your data lives securely in your Agent database, no external data sharing or vendor lock-in. |
476
+ | | **Access Control** | Role-based access (RBAC) and per-agent permissions to protect sensitive contexts and tools. |
430
477
 
431
- 1. **Pre-built FastAPI runtime**: AgentOS ships with a ready-to-use FastAPI app for running your agents, teams, and workflows. This gives you a major head start in building your AI product.
478
+ Every part of Agno is built for real-world deployment where developer experience meets production performance.
432
479
 
433
- 2. **Integrated UI**: The [AgentOS UI](https://os.agno.com) connects directly to your runtime, letting you test, monitor, and manage your system in real time. This gives you unmatched visibility and control over your system.
480
+ ## AgentOS - Production Runtime for Multi-Agent Systems
434
481
 
435
- 3. **Private by design**: AgentOS runs entirely in your cloud, ensuring complete data privacy. No data ever leaves your system. This is ideal for security-conscious enterprises.
482
+ AgentOS is Agno's high-performance runtime for serving multi-agent systems in production. Key features include:
436
483
 
437
- Here's what the [AgentOS UI](https://os.agno.com) looks like:
484
+ 1. **Pre-built FastAPI Runtime**: AgentOS ships with a ready-to-use FastAPI app for orchestrating your agents, teams, and workflows. This provides a major head start when building an AI product.
485
+
486
+ 2. **Integrated Control Plane**: The [AgentOS UI](https://os.agno.com) connects directly to your runtime, letting you test, monitor, and manage your system in real time. This gives you unmatched visibility and control over your system.
487
+
488
+ 3. **Private by Design**: AgentOS runs entirely in your cloud, ensuring complete data privacy. No data ever leaves your system. This is ideal for security-conscious enterprises.
489
+
490
+ Here's what the [AgentOS UI](https://os.agno.com) looks like in action:
438
491
 
439
492
  https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
440
493
 
441
494
  ## The Complete Agentic Solution
442
495
 
443
- For companies building agents, Agno provides the complete solution:
496
+ For companies building agents, Agno provides the complete agentic solution:
444
497
 
445
498
  - The fastest framework for building agents, multi-agent teams and agentic workflows.
446
499
  - A ready-to-use FastAPI app that gets you building AI products on day one.
@@ -448,19 +501,6 @@ For companies building agents, Agno provides the complete solution:
448
501
 
449
502
  Agno brings 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 any external services or pay retention costs, you get complete privacy and control.
450
503
 
451
- ## Getting started
452
-
453
- 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.
454
-
455
- After that, checkout the [examples gallery](https://docs.agno.com/examples/introduction) and build real-world applications with Agno.
456
-
457
- ## Documentation, Community & More Examples
458
-
459
- - Docs: <a href="https://docs.agno.com" target="_blank" rel="noopener noreferrer">docs.agno.com</a>
460
- - Cookbook: <a href="https://github.com/agno-agi/agno/tree/main/cookbook" target="_blank" rel="noopener noreferrer">Cookbook</a>
461
- - Community forum: <a href="https://community.agno.com/" target="_blank" rel="noopener noreferrer">community.agno.com</a>
462
- - Discord: <a href="https://discord.gg/4MtYHHrgA8" target="_blank" rel="noopener noreferrer">discord</a>
463
-
464
504
  ## Setup Your Coding Agent to Use Agno
465
505
 
466
506
  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. This file is built for AI systems to efficiently parse and reference our documentation.
@@ -4,7 +4,7 @@ agno/exceptions.py,sha256=7xqLur8sWHugnViIJz4PvPKSHljSiVKNAqaKQOJgZiU,4982
4
4
  agno/media.py,sha256=eTfYb_pwhX_PCIVPSrW4VYRqmoxKABEF1aZClrVvQ30,16500
5
5
  agno/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  agno/agent/__init__.py,sha256=s7S3FgsjZxuaabzi8L5n4aSH8IZAiZ7XaNNcySGR-EQ,1051
7
- agno/agent/agent.py,sha256=UYBn-uX2WyayZeJnRLTz7EBerrChaX7QyQWGSI6IQPY,428776
7
+ agno/agent/agent.py,sha256=YcP5yKxsxLb4KoxNr7H4SDGu27dwtqsXQ9clDzZl3bw,449829
8
8
  agno/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  agno/api/agent.py,sha256=fKlQ62E_C9Rjd7Zus3Gs3R1RG-IhzFV-ICpkb6SLqYc,932
10
10
  agno/api/api.py,sha256=Z7iWbrjheJcGLeeDYrtTCWiKTVqjH0uJI35UNWOtAXw,973
@@ -106,8 +106,8 @@ agno/integrations/discord/__init__.py,sha256=MS08QSnegGgpDZd9LyLjK4pWIk9dXlbzgD7
106
106
  agno/integrations/discord/client.py,sha256=2IWkA-kCDsDXByKOGq2QJG6MtFsbouzNN105rsXn95A,8375
107
107
  agno/knowledge/__init__.py,sha256=PJCt-AGKGFztzR--Ok2TNKW5QEqllZzqiI_7f8-1u80,79
108
108
  agno/knowledge/content.py,sha256=q2bjcjDhfge_UrQAcygrv5R9ZTk7vozzKnQpatDQWRo,2295
109
- agno/knowledge/knowledge.py,sha256=P3-aEys4nYbLWs-vCoMQ1vf5A3s6wiKNp4yqscH-wGg,78103
110
- agno/knowledge/types.py,sha256=ciwDLK9MXwi_W_g4nUChEmK6meDQyqTqGK2Ad-wM1os,754
109
+ agno/knowledge/knowledge.py,sha256=-VhXpz2SuKysPiANF6lff3v61P5HJKr-HKc17WwBOC0,78546
110
+ agno/knowledge/types.py,sha256=4NnkL_h2W-7GQnHW-yIqMNPUCWLzo5qBXF99gfsMe08,773
111
111
  agno/knowledge/utils.py,sha256=_uhEFtz4p7-cIKffdj5UZ__c-u96rs2UWP6dv5HpOMk,6490
112
112
  agno/knowledge/chunking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
113
  agno/knowledge/chunking/agentic.py,sha256=OksjCXySqu0vRseQsFgsOdfD0lXqXHP_SGJ6G8Tecbc,3059
@@ -148,7 +148,8 @@ agno/knowledge/reader/firecrawl_reader.py,sha256=SCbcRLkMrUb2WiC6SPuAoZULtHITa2V
148
148
  agno/knowledge/reader/json_reader.py,sha256=KfDgHno_XHORIGaoA1Q2Y5M7nkcTFM9IUzWXkjVjYKQ,3245
149
149
  agno/knowledge/reader/markdown_reader.py,sha256=HoSEkX2Svl2tEMDyzAmRNmwxsterb3i3-1-EQR6N4IU,5272
150
150
  agno/knowledge/reader/pdf_reader.py,sha256=F1Zx5i5jTUbuuKEPEnlnzMgCAweJMehYY0igRFHuHf4,17206
151
- agno/knowledge/reader/reader_factory.py,sha256=4rQ2MbdCdDOquFJWMi_o0eYzxsaGSTDcu6dQez1LHGs,10275
151
+ agno/knowledge/reader/pptx_reader.py,sha256=q0VAszrLry1ZhTOYXFRt6TVMAw12pAK64frYRvMNACo,3929
152
+ agno/knowledge/reader/reader_factory.py,sha256=18H8FQHIZf4SECZls1AwpMAzrS1FSOEuTkgJqbv0-HE,10783
152
153
  agno/knowledge/reader/s3_reader.py,sha256=j_xBDWV9l5Uhsr88glQ0dCMS-ijvqw8gdMc1Bzfm394,3547
153
154
  agno/knowledge/reader/text_reader.py,sha256=Vkk3mWhjyazPv77Z9PGO1nRVk8cmVkUFIWZFCVqTkOI,4444
154
155
  agno/knowledge/reader/web_search_reader.py,sha256=GMc59AxwS1zTyBEmnwzJCEbPmK4ut1eWy8EV5XXTRSk,14585
@@ -165,7 +166,7 @@ agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_Uj
165
166
  agno/memory/__init__.py,sha256=XWKJU5SJObYZqEKMZ2XYwgH8-YeuWUoSRfT4dEI5HnY,101
166
167
  agno/memory/manager.py,sha256=IWMnFxRF604zLY1jQArOggMwLjUUKXiPWt7RtLlpHUk,51907
167
168
  agno/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- agno/models/base.py,sha256=bjP0Xt5-Jlk1I_7wHmuv8lhUPE75WzZ_iF3U-d81TUI,85214
169
+ agno/models/base.py,sha256=Tifu_fMGiWgwGMMoB6ww_BjrZ7cOb73V1oqZCU9PXJk,85198
169
170
  agno/models/defaults.py,sha256=1_fe4-ZbNriE8BgqxVRVi4KGzEYxYKYsz4hn6CZNEEM,40
170
171
  agno/models/message.py,sha256=HMlY71ZCDWCUrNTqIbRezWZK5FfWcvcs5eg_hhjbuqo,19023
171
172
  agno/models/metrics.py,sha256=81IILXZwGmOTiWK003bi5mg4bM1f4LCWbwyamjFzp18,4500
@@ -174,7 +175,7 @@ agno/models/utils.py,sha256=PprNlVI8d8loHayjRsrc4TL38sfkFMS3EVZcF5cLXoA,669
174
175
  agno/models/aimlapi/__init__.py,sha256=XQcFRvt4qJ8ol9nCC0XKEkVEDivdNf3nZNoJZMZ5m8M,78
175
176
  agno/models/aimlapi/aimlapi.py,sha256=9Qh-b8HvFSvmPP3VBNGT00qy9izHLMWgR-KDQCE5CM0,1493
176
177
  agno/models/anthropic/__init__.py,sha256=nbReX3p17JCwfrMDR9hR7-OaEFZm80I7dng93dl-Fhw,77
177
- agno/models/anthropic/claude.py,sha256=03JQsLVHeutcWn5btUsqFNy4im2XAumGD9gOvei5bN0,28131
178
+ agno/models/anthropic/claude.py,sha256=4D4yJZc5R3K1L_hL-yJmK5zwcv0f0diHkfkFOEDqNwE,28144
178
179
  agno/models/aws/__init__.py,sha256=TbcwQwv9A7KjqBM5RQBR8x46GvyyCxbBCjwkpjfVGKE,352
179
180
  agno/models/aws/bedrock.py,sha256=ScZcGwOMh-N0DfArXtDVzKy467QPAN0OS8llBNAc8cQ,28880
180
181
  agno/models/aws/claude.py,sha256=sL47z9fM3jxGbARkr0mlAVYEKKX854J3u-Qeb5gIADo,14746
@@ -227,7 +228,7 @@ agno/models/nexus/nexus.py,sha256=rJcBQXR1aqUiLWMPBRuHIEh87wVrsqXup1hr_smanBQ,63
227
228
  agno/models/nvidia/__init__.py,sha256=O0g3_0_ciOz0AH4Y4CAL7YRfhdDPAvhDzNjJmgWKT78,74
228
229
  agno/models/nvidia/nvidia.py,sha256=0vpEq4cBY_5JdBzGoD95rBdro6dpVNAV5ioKz3lpnfs,948
229
230
  agno/models/ollama/__init__.py,sha256=TIhwxG7ek3eyfoKTLoZQXwdgzcIngYKjbjSlkf2gkWE,72
230
- agno/models/ollama/chat.py,sha256=jGDjLi6aeJdLCG8ITxnp0r_E7eoWT5qOZWbM9GmzuyU,16005
231
+ agno/models/ollama/chat.py,sha256=25gueHUyGosb-XsNbzq7pjuFMh4ko4KOvyFIyTJcUpA,16240
231
232
  agno/models/openai/__init__.py,sha256=OssVgQRpsriU6aJZ3lIp_jFuqvX6y78L4Fd3uTlmI3E,225
232
233
  agno/models/openai/chat.py,sha256=ZdFj0xeCEGI1_UR_q_IsHl_KqoQ076g8LG5g32zJRYc,37110
233
234
  agno/models/openai/like.py,sha256=wmw9PfAVqluBs4MMY73dgjelKn1yl5JDKyCRvaNFjFw,745
@@ -255,23 +256,23 @@ agno/models/vllm/vllm.py,sha256=UtiiSvUR4pG_1CzuhY5MWduRgzM2hGVTakKJ6ZBdQmo,2730
255
256
  agno/models/xai/__init__.py,sha256=ukcCxnCHxTtkJNA2bAMTX4MhCv1wJcbiq8ZIfYczIxs,55
256
257
  agno/models/xai/xai.py,sha256=jA6_39tfapkjkHKdzbKaNq1t9qIvO1IaZY1hQqEmFVs,4181
257
258
  agno/os/__init__.py,sha256=h8oQu7vhD5RZf09jkyM_Kt1Kdq_d5kFB9gJju8QPwcY,55
258
- agno/os/app.py,sha256=xCO4zaTzsWArRjLD0jsNZcP5ixjZxKQyPlXs6fljbJ4,27819
259
+ agno/os/app.py,sha256=F_5XGuZMVc2Y4X9-9WrF8JGvE9Ae74s1AVLo01LU_Lk,27835
259
260
  agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
260
261
  agno/os/config.py,sha256=u4R9yazQXIcKjR3QzEIZw_XAe_OHp3xn0ff7SVkj2jA,2893
261
262
  agno/os/mcp.py,sha256=vJhjjSm1KC61HLoxPj24lSrjkjo7plkoFfcQX2BmTp0,10253
262
- agno/os/router.py,sha256=eRxyRX9FjgxtaYwrtNCJLiWH2m6gx6L5zYCff1Gv1ew,71106
263
- agno/os/schema.py,sha256=3krwIyU8dZhKKuf-oe4a-Zub4MBQqwnxeFCzJzKHDxU,39883
263
+ agno/os/router.py,sha256=1Q9YsaV4N85taBm8yB9F5g6hAj4RlpJ8RAqpmFCU-dM,71056
264
+ agno/os/schema.py,sha256=8WFGY1rgC5A3nbxwb9NqhV2dg4PyFxqlLCGsYhOFJIg,52749
264
265
  agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
265
- agno/os/utils.py,sha256=V6PqoPaUbj1O6O2_vvLZAmKalInh5_Nn3twdYxF5XB0,19996
266
+ agno/os/utils.py,sha256=v4EQFRvAMC1NOhhvYc2J_Dxx7-PKz-iZIaOP78731zg,19996
266
267
  agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
267
268
  agno/os/interfaces/base.py,sha256=vXkr1tRjWHTcmBlQFzvQjqURLhObmFtUAx82uij_j48,542
268
269
  agno/os/interfaces/a2a/__init__.py,sha256=Fs7--dx9drvtVS9QjsCCm0P7c-hJ7TzU8gNwKTQsZDA,62
269
270
  agno/os/interfaces/a2a/a2a.py,sha256=UiTX-GOuXxp1CQzRgtmgSSYNn2iFC_vKYnC37OidygM,1337
270
- agno/os/interfaces/a2a/router.py,sha256=p3UlrgYhx5SnudOh6PQh3Mx8qLbd6an-FW_fZfVcaP8,11009
271
+ agno/os/interfaces/a2a/router.py,sha256=OpNCHhYoCUyfcuRtiOdvUrUZnxfFB1jhMWraLA85XMg,10985
271
272
  agno/os/interfaces/a2a/utils.py,sha256=rTn9x0UGbX53EiAsljf87PmzYwLuvqaobUWpCn35ut0,39285
272
273
  agno/os/interfaces/agui/__init__.py,sha256=1zrGICk4roXUINwSFZfqH6sBsbHmD5KjGYVJMGg4fKQ,66
273
274
  agno/os/interfaces/agui/agui.py,sha256=PKGoDDbtQFmEC0zRwZmsjS_5t9bJWJ-ZGwxEQsu9P-U,1415
274
- agno/os/interfaces/agui/router.py,sha256=fKBxLl8oG8QK6Dq6w9G5OhfX1FaHsWHelxHy4WlRAf0,4876
275
+ agno/os/interfaces/agui/router.py,sha256=8cMaq-IiI54jF7K8EHIVOAEuKFIXFu11jQuGY5HZfoA,4851
275
276
  agno/os/interfaces/agui/utils.py,sha256=d97r8EJ9GZ3TwmI53ZcOTy4ICHiFX3s6WY75UnsolyQ,20162
276
277
  agno/os/interfaces/slack/__init__.py,sha256=F095kOcgiyk_KzIozNNieKwpVc_NR8HYpuO4bKiCNN0,70
277
278
  agno/os/interfaces/slack/router.py,sha256=KVR6jerRnjw6hRLDs3NR8ScIJx2MDACcVOAyQyJEm6A,5466
@@ -284,23 +285,23 @@ agno/os/interfaces/whatsapp/whatsapp.py,sha256=tNJncEu_hm0lFOHbjaSoz5-VIKORR_pyW
284
285
  agno/os/middleware/__init__.py,sha256=EYsNzeixFgL3n8kepKWXT42fTTmrNyD8b8rOdXecMRI,94
285
286
  agno/os/middleware/jwt.py,sha256=xw9jQkVFMTTzUVird1k-egAYBmPd174L06YflYCvB5Q,9468
286
287
  agno/os/routers/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
287
- agno/os/routers/health.py,sha256=MpJrg488T0m8jU0mtoBNPiLhlR2r2gFihvyZwdQh_oc,725
288
+ agno/os/routers/health.py,sha256=JSbV48eRucSkMhBUfr0rsaMaXQEH4oBU3o4YF1sWvRQ,912
288
289
  agno/os/routers/home.py,sha256=xe8DYJkRgad55qiza0lHt8pUIV5PLSyu2MkybjuPDDE,1708
289
290
  agno/os/routers/evals/__init__.py,sha256=3s0M-Ftg5A3rFyRfTATs-0aNA6wcbj_5tCvtwH9gORQ,87
290
291
  agno/os/routers/evals/evals.py,sha256=oA6KpeIjlclMAXn1XkpJ147SvJZxr3AhsX__5fl9dX4,18266
291
- agno/os/routers/evals/schemas.py,sha256=3Ebm3IrpX22Hg3ZatMRkozgS4TfnMki4_UbqCNtQvJ4,4800
292
+ agno/os/routers/evals/schemas.py,sha256=G6XvlEcl0FtgdsmHUjrEWxwxwGMhuYR2HsjfFT3QXUM,6523
292
293
  agno/os/routers/evals/utils.py,sha256=Zi5f2hWqcDrcZ3f3MfC1Sx9_NUYz7rzIt8D-FrluwhM,5538
293
294
  agno/os/routers/knowledge/__init__.py,sha256=ZSqMQ8X7C_oYn8xt7NaYlriarWUpHgaWDyHXOWooMaU,105
294
295
  agno/os/routers/knowledge/knowledge.py,sha256=Hq6nIjmzygAZ6uT340ttot7Rilkfnedt7PbpuVjiDrg,43849
295
- agno/os/routers/knowledge/schemas.py,sha256=T8bbzi6dbUxNUT8_oStSfOua6I7c9AGh4qy6TTP4oPI,6694
296
+ agno/os/routers/knowledge/schemas.py,sha256=ccf-KsZmcm99voPH1yvNngc3W5IC9SRkni_5-_J2erk,8957
296
297
  agno/os/routers/memory/__init__.py,sha256=9hrYFc1dkbsLBqKfqyfioQeLX9TTbLrJx6lWDKNNWbc,93
297
298
  agno/os/routers/memory/memory.py,sha256=1by03MSaE0ysd4DaUVHxAs3lslL4gql9_HSFfMoJmiQ,20432
298
- agno/os/routers/memory/schemas.py,sha256=yhQUF5m_y5bJQj1N4mKesUG3xmpE2TyZqF92LNqzm1w,1701
299
+ agno/os/routers/memory/schemas.py,sha256=ObLVb4tbDXSPCrSpAmsyGKgT9qAM1BI8sZLv9wtUyrU,2658
299
300
  agno/os/routers/metrics/__init__.py,sha256=Uw6wWEikLpF5hHxBkHtFyaTuz7OUerGYWk0JW7teUGQ,97
300
301
  agno/os/routers/metrics/metrics.py,sha256=X0BUBLqX5YKOPVjS2J7SvOYgX1iq7sZjpIYO-gSOBY0,8485
301
- agno/os/routers/metrics/schemas.py,sha256=E7F31CXg9_JiBqeNZWFsZCraShqEHIDD8pDfS4E2oco,1633
302
+ agno/os/routers/metrics/schemas.py,sha256=1YsD01b1-mtJlh5HhW9zvPYok9Q2nPpDhN-gJ6B88sU,2674
302
303
  agno/os/routers/session/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
303
- agno/os/routers/session/session.py,sha256=an63SLl9atM8Bdu-iy27z3b_NZDCKeEcNAZ0OqCEJxs,34090
304
+ agno/os/routers/session/session.py,sha256=FTZd3tHUz11nBhWDXjOJ1sDg5IAZ74D5lnrfhjuq1-s,51445
304
305
  agno/reasoning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
306
  agno/reasoning/anthropic.py,sha256=RRGINflEXuY5kkUbC8_1ztTVY708YaUm3dEqSW7twcI,3130
306
307
  agno/reasoning/azure_ai_foundry.py,sha256=VL7DmFpuYMf_gLFAZ9kUCS7Zb3pNhDaEingRZcyUdQY,2594
@@ -314,19 +315,19 @@ agno/reasoning/openai.py,sha256=JYk-mR9cMf1ibprX3MdL8oeCEDyQ3XaJw9PAIYvWeGk,3234
314
315
  agno/reasoning/step.py,sha256=6DaOb_0DJRz9Yh1w_mxcRaOSVzIQDrj3lQ6rzHLdIwA,1220
315
316
  agno/reasoning/vertexai.py,sha256=O9ntvalkIY2jLmWviEH1DnecMskqTL-mRZQBZohoHiU,2974
316
317
  agno/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
- agno/run/agent.py,sha256=JaQf4cDTwH6hRJdlhgnbOxnJUT8yry7cLRo1PX0u-OE,23899
318
+ agno/run/agent.py,sha256=0Je28vN3tFW5YdhcU-YAXZHT16wFSWKbE5zkAu9E3bo,25631
318
319
  agno/run/base.py,sha256=x37ecdhKdb3dbW23d8t2JPBZwrwIC93lRvT1-76CK0c,7059
319
320
  agno/run/cancel.py,sha256=yoSj3fnx8D7Gf-fSngVIgd3GOp3tRaDhHH_4QeHDoAk,2667
320
321
  agno/run/messages.py,sha256=rAC4CLW-xBA6qFS1BOvcjJ9j_qYf0a7sX1mcdY04zMU,1126
321
- agno/run/team.py,sha256=uQvd9BrvxJgU8HMM9_3xRgHU9_qD3rCEJdztExt1yKs,24448
322
- agno/run/workflow.py,sha256=sgYN4VeiDzXP-w16pE68uGWUlZSVCa3UCE98tHWSEqY,22662
322
+ agno/run/team.py,sha256=_6MhyeDvP2pO6dqA0U8yxqxwpmX6q0eBfhLjrsOY1Fc,26082
323
+ agno/run/workflow.py,sha256=DHnRDjtWlMXwoG0jGkk332hFbhqRKav3zUlb7dYrps4,23201
323
324
  agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
324
325
  agno/session/agent.py,sha256=vut3IwCivUu0vvuht_1c3rUhW61NZee6whxDQUsEkUM,9756
325
- agno/session/summary.py,sha256=THBbzE48V81p4dKUX2W8OvbpsNO5dI6BdtqDyjfcVqw,8433
326
- agno/session/team.py,sha256=0lS-9ljtG17iyC0n8sq_7aEy9MZsdfMf8VgObqJ_3tg,10384
326
+ agno/session/summary.py,sha256=5lKMepDMh3bp1Uo8EJMvHHQRwLiB14eF53iMkg0wumM,10012
327
+ agno/session/team.py,sha256=e1GagwJOwmhjvijUiCitOu0YCuf_BadAtG2KC4n34ic,13390
327
328
  agno/session/workflow.py,sha256=tluE_3ERMBYJtffpwlrhdETWlzJk6Xw2x06FZ1Y3fXg,7397
328
329
  agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
329
- agno/team/team.py,sha256=doNSshovZr4_amrHGgEDyVtCG0WrUe6IaSNNXC2eZ0M,377664
330
+ agno/team/team.py,sha256=RNOMWDWHaOPt7MBT2oVuhGis1M5aKiRgvpzXASWYHx4,391440
330
331
  agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
331
332
  agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
332
333
  agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
@@ -450,6 +451,7 @@ agno/tools/models/nebius.py,sha256=H06zDhYfrZuV1p-OfIWgfK99TRwkZShswMkbaS-jC4k,4
450
451
  agno/tools/streamlit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
451
452
  agno/tools/streamlit/components.py,sha256=hYYyr4FRMsNDV8IgK68_oiDF-Qi9djChZmDcg3s6Uu8,4016
452
453
  agno/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
+ agno/utils/agent.py,sha256=upPgFVmO6fgo4BoUIjkFa3BkuNtZ5VilgrXZWvWd6kc,14832
453
455
  agno/utils/audio.py,sha256=kdPMr_wYh-NyxQ-U57hyulK0Y7iIkuVinL9AQ7w64EU,1455
454
456
  agno/utils/certs.py,sha256=Dtqmcwngq6b-27gN7Zsmo9lKlMPYd70UNexLMqpX3BE,683
455
457
  agno/utils/code_execution.py,sha256=JAzcsuUJVO8ZVcD9AgX_O9waBegjhbrHkQZp-YZGsdA,415
@@ -457,7 +459,7 @@ agno/utils/common.py,sha256=EJaERgzrJnin1i0Aorv0Sf5y8AfMQWM-8yYhuYtD_4Q,4445
457
459
  agno/utils/dttm.py,sha256=sk7olzbUlMl8ibAGx24sxoP0DGBCnH81VQRYjqIcpDg,289
458
460
  agno/utils/enum.py,sha256=wDHnruIf8cQU-_QdryY9LBugPCrlj-nOabQuEFnmeYM,753
459
461
  agno/utils/env.py,sha256=o8OwKhx78vi8MaXPes10mXejmJ13CqAh7ODKMS1pmcM,438
460
- agno/utils/events.py,sha256=mGIBEmCY4z27QJuOChQe0UGnniApU7BHvk4T08GUbEk,22496
462
+ agno/utils/events.py,sha256=tY0f2qRKhLTilDyDl3evRGZRQHTSBpHAwPDZjHitYY0,28033
461
463
  agno/utils/format_str.py,sha256=Zp9dDGMABUJzulp2bs41JiNv0MqmMX0qPToL7l_Ab1c,376
462
464
  agno/utils/functions.py,sha256=eHvGqO2uO63TR-QmmhZy2DEnC0xkAfhBG26z77T7jCo,6306
463
465
  agno/utils/gemini.py,sha256=2IMG68G41nfD-5dSepRu9ZrZa_20AvRyqygeAtHgOJQ,15609
@@ -470,7 +472,7 @@ agno/utils/log.py,sha256=Ycg4_MEkXyOz25OkY272JHWxIZP1nB4OScwJ-r8BMGk,7791
470
472
  agno/utils/mcp.py,sha256=v5juISDNtdQaUK1DmJnAAGuNiSp0491TDwErgjEdhF8,5113
471
473
  agno/utils/media.py,sha256=Lk0sbSHmoKlQi3hLKorowCKGF74xdeMfqIj6Gt21Zek,5891
472
474
  agno/utils/merge_dict.py,sha256=K_dZdwi46gjDFn7wgqZ9_fycRIZGJCnUxFVKCrQ6PYc,1490
473
- agno/utils/message.py,sha256=HcTDVdgZOfwqGL0YW5QNEeNoSLUvTawCo6_USJzsd6M,2423
475
+ agno/utils/message.py,sha256=jIcSe79WmfpbbYowy0C57ZzRBd9ENj-hyj3TQw_9vsg,4684
474
476
  agno/utils/openai.py,sha256=quhHsggz0uSZc9Lt-aVsveHSS1LT2r1fMgC0IpG43Tg,10300
475
477
  agno/utils/pickle.py,sha256=Ip6CPNxAWF3MVrUhMTW7e3IcpKhYG0IA-NKbdUYr94c,1008
476
478
  agno/utils/pprint.py,sha256=aTg3gfib3x3VK3E-xJrbBeufK7s77ebTVtWoa2VrYgU,7762
@@ -483,7 +485,7 @@ agno/utils/serialize.py,sha256=XvQA_KSkVd5qI1QuZwdQpCsl1IOKddFu52Jl6WQASqU,904
483
485
  agno/utils/shell.py,sha256=JaY14Fq3ulodG4SeSdLEoOZDI4JJlmCbdgwK5beJuc8,700
484
486
  agno/utils/streamlit.py,sha256=IKKOkYGqlSvW0JKlWrI2393a4DmL4gW5rW-cnEhhTZ4,17993
485
487
  agno/utils/string.py,sha256=iO1etmjHVxnPMTixAKlpR1vnBnRapYL2pm_cjhS06Ww,7557
486
- agno/utils/team.py,sha256=VXdm41WhsC6Rb20fHcpO4H55obQ6R435luAAZ4Jc3yQ,1853
488
+ agno/utils/team.py,sha256=_UlknLu2BZtmauzCcr9OVNNqzcjGUnZBJII0ww1NhSo,1693
487
489
  agno/utils/timer.py,sha256=Fuax69yh1cVIzCYMmJDB4HpTsPM8Iiq1VaTWz1vJtF8,1282
488
490
  agno/utils/tools.py,sha256=YZjA95pSNhHHcyoz5pe-Wo-yh9O2NU4Pqcbhs5kbefY,3842
489
491
  agno/utils/web.py,sha256=JwLKspkLcuFyA19T5tf4-Rs8BGPwTEySp531A3t0sC4,655
@@ -499,9 +501,9 @@ agno/utils/models/openai_responses.py,sha256=63f2UgDFCzrr6xQITrGtn42UUHQBcZFUUFM
499
501
  agno/utils/models/schema_utils.py,sha256=L6TkraMClI471H6xYy7V81lhHR4qQloVKCN0bF4Ajw0,5047
500
502
  agno/utils/models/watsonx.py,sha256=fe6jN0hBvOCQurqjS6_9PIwDHt-4kVod9qW236Zs6DU,1496
501
503
  agno/utils/print_response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
- agno/utils/print_response/agent.py,sha256=Er4YxWTMsSewC0Ckr0woabyOzT0XyLNzmXuItyuCa4s,35789
503
- agno/utils/print_response/team.py,sha256=b1JzAS_oskX_0aw2Xw4JPtNLoOyWUBT_g2JToWhPT70,78659
504
- agno/utils/print_response/workflow.py,sha256=OwSodeoUhWHBKWZlv2eObPl0brzV_LndFrPEHn518Lc,72083
504
+ agno/utils/print_response/agent.py,sha256=CcpWKVnSAsbHYcTm_QHu43j5-z8mAu7Kl_c7LGCI4bc,35888
505
+ agno/utils/print_response/team.py,sha256=nJ9KcwdAmj6YyUUjDYPEsRqi5hYw8ovypvkN08hwXsA,78653
506
+ agno/utils/print_response/workflow.py,sha256=vtwrnX9KGwTRVoDEBEfsUTvFUHJw2uquCnzfnAP4bto,72071
505
507
  agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
506
508
  agno/vectordb/base.py,sha256=Z5IN4kcO0privHOOI16z-G--PtjfnMrBNrsLx3umokM,3848
507
509
  agno/vectordb/distance.py,sha256=OjpKSq57_gblZm4VGZTV7B7le45r_2-Fp1X4Hilx1M4,131
@@ -547,16 +549,16 @@ agno/vectordb/weaviate/__init__.py,sha256=FIoFJgqSmGuFgpvmsg8EjAn8FDAhuqAXed7fja
547
549
  agno/vectordb/weaviate/index.py,sha256=y4XYPRZFksMfrrF85B4hn5AtmXM4SH--4CyLo27EHgM,253
548
550
  agno/vectordb/weaviate/weaviate.py,sha256=8KNa5a-RuksE6w9poD4vi_ixUBeoB96PkzCL9DHSs5o,39406
549
551
  agno/workflow/__init__.py,sha256=lwavZXIkgqajbSf1jMqzE7kbXBIFmk5niI_NgpVI-gA,542
550
- agno/workflow/condition.py,sha256=9nnwzaf4SiaMKgSIbZ_mekP6ndx3daAas3vNyyUyclE,31327
551
- agno/workflow/loop.py,sha256=q2XssC179htRC7KPiebUcvr0lKexfZUB9aUO4D3tOrk,32305
552
- agno/workflow/parallel.py,sha256=Gb6XZbwDJgmBBbuiZTFHvphQqrsMVgM-HTOMoiIHweg,34843
553
- agno/workflow/router.py,sha256=uMUvjOgBcqpCzulM-9kVjdzXheqaMmuGz60F5JXPXTw,29449
554
- agno/workflow/step.py,sha256=2vBv97QoDLtFJnWAueDLLbzWvB3dxPd5Cl_dwqdl5Ew,60251
555
- agno/workflow/steps.py,sha256=1qOcH0SuPTPE0Ac3sRyRLjFoMcKyTo44hlJXdbOBNnM,25389
552
+ agno/workflow/condition.py,sha256=DzgJkuhgkWvBpK2AFteSoDK36uJDHkE7ZWCePgsmp0I,31601
553
+ agno/workflow/loop.py,sha256=qNaHREa_k__qJ6pyM28VJcM2Vxkfpen7ol7FCA8OoJo,32539
554
+ agno/workflow/parallel.py,sha256=vcepml4Ww1JXJVLnfaxGwYfv0AVkuEeBS2LWmy7lIGI,35125
555
+ agno/workflow/router.py,sha256=q2nuFMEAUQwVTZGncFCwlOsdOw-4nHt5QNJQgEdhv6I,29707
556
+ agno/workflow/step.py,sha256=gD9Nw3jYk6jsTTko3Ab0pRmMZ2ReOhcCzCgHZA7EcSc,60533
557
+ agno/workflow/steps.py,sha256=O3lbKw56ziSnuJndAGm8hjlEwdTh2jQXf1s0587Va3M,25671
556
558
  agno/workflow/types.py,sha256=DutB4UkEppJoWRiNaGEnPk6xFNpg0oCBwOb7VJ8T_xE,18646
557
- agno/workflow/workflow.py,sha256=AD2mKXap840IwPb2WMnVJM30lQLAFUfWxd7nqQJ52hU,137906
558
- agno-2.1.10.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
559
- agno-2.1.10.dist-info/METADATA,sha256=g07lktwrtIdLn4D35ScRdHjz2TXIZnMD96VQXIHW1sY,24505
560
- agno-2.1.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
561
- agno-2.1.10.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
562
- agno-2.1.10.dist-info/RECORD,,
559
+ agno/workflow/workflow.py,sha256=LBy_jVjvglRE4sOLAITZGaOJctJYbP59oV0HvuiHopA,147346
560
+ agno-2.2.1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
561
+ agno-2.2.1.dist-info/METADATA,sha256=C28Hn25iN0DTL3dfdB_4qm3pY0ygTuXVWQqzyQFuyJ0,28076
562
+ agno-2.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
563
+ agno-2.2.1.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
564
+ agno-2.2.1.dist-info/RECORD,,
File without changes