agno 2.4.5__py3-none-any.whl → 2.4.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agno
3
- Version: 2.4.5
3
+ Version: 2.4.6
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
@@ -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, run, manage multi-agent systems.
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
- Agno is a framework, runtime, and control plane for multi-agent systems.
463
+ **A Python SDK for building agents that learn and improve with every interaction.**
464
464
 
465
- | Layer | What it does |
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
- ## Why Agno?
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
- - **Private by design.** AgentOS runs in your cloud. The control plane connects directly to your runtime from your browser. No retention costs, no vendor lock-in, no compliance headaches.
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.anthropic import Claude
484
- from agno.os import AgentOS
485
- from agno.tools.mcp import MCPTools
475
+ from agno.models.openai import OpenAIResponses
486
476
 
487
- agno_agent = Agent(
488
- name="Agno Agent",
489
- model=Claude(id="claude-sonnet-4-5"),
490
- db=SqliteDb(db_file="agno.db"),
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
- Run this and connect to the [AgentOS UI](https://os.agno.com):
484
+ One line. Your agent now remembers users, accumulates knowledge, and improves over time.
485
+
486
+ ## Production Stack
504
487
 
505
- https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
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
- **Memory & Knowledge**
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
- - Culture: shared long-term memory across agents
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 guide](https://github.com/agno-agi/agno/tree/main/cookbook/00_quickstart)
538
- 2. Browse the [cookbook](https://github.com/agno-agi/agno/tree/main/cookbook) for real-world examples
539
- 3. Read the [docs](https://docs.agno.com) to go deeper
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
- We welcome contributions. See the [contributing guide](https://github.com/agno-agi/agno/blob/v2.0/CONTRIBUTING.md).
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=3Mr8GtSGyORVFR_xZN9l9waGCX3B4jKnZnC74IpFHl4,563627
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
@@ -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=BDs5yk1N3G6XGPDz3OYEwuGDkli5MwZHSRCTaFwbK8w,12899
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,20 +127,20 @@ 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=VtqgwLfYrGBpzXjFmIFMxR5Pi_N5nJHB75fB6wRUCNU,213482
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=WeQ5ORe_CxsGYg0udOXjvwBo95hnpPZHVpFj-bMzuVU,3168
136
- agno/knowledge/chunking/code.py,sha256=YLdHL3muYz9MhDqxXPW7MGfqEph4KIZu6_RXPp6KUIc,3569
137
- agno/knowledge/chunking/document.py,sha256=uCHbPdZR4ILbm9RkpuVu8zw4dPIH0jd1XIRELOixRlI,6454
138
- agno/knowledge/chunking/fixed.py,sha256=Mz0QgxqVNSaOYPtzihLz6yJdz19zCZ8zLRXIREjgTb8,2371
139
- agno/knowledge/chunking/markdown.py,sha256=5hiHuvuGJq0UBk7gwnFV5Q84MumXD39UNcY4qlzH1fk,14665
140
- agno/knowledge/chunking/recursive.py,sha256=PXeq-RF9nJ8alV771q0jEyl1C2QPMVFUTOiJSU0nStw,2357
141
- agno/knowledge/chunking/row.py,sha256=yFGKMsHd2Ml0fkJLksw8ULUpWXmbSXIQwnwlKHVPP40,1426
142
- agno/knowledge/chunking/semantic.py,sha256=_PVDvmtJhpoamtpn-kHq54rwLgrbScEky5yqUbBc6JQ,7267
143
- agno/knowledge/chunking/strategy.py,sha256=Q-HkzcO7YbRY_fbrLz-GRrlplT-F3UeL77R51OoHAGk,7265
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
@@ -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=XLsPqOANI-zRgOp1ueKHD8D14AdP_N1m0ij7Isqi1Fc,4615
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
@@ -201,7 +201,7 @@ agno/learn/utils.py,sha256=dUL_oKWHPyUWF5e2muJyNo9W4Y7fwePESI_APQUZ12g,5672
201
201
  agno/learn/stores/__init__.py,sha256=c5kC8X5bgZwwRG7epKU5IHdJ-eA9qKcC9G756Xrk2CA,1306
202
202
  agno/learn/stores/decision_log.py,sha256=gzGhHKe8YZ3I8C_xuTJzAobUmVQRhrFZSZ5W9pyHxis,37933
203
203
  agno/learn/stores/entity_memory.py,sha256=6liU6aoR7C2tI91fgU2BUChtTYlCLM1dH4Ad6Iu7dOY,117078
204
- agno/learn/stores/learned_knowledge.py,sha256=M86NeGNOWqfdbKMvPCOv11Rigzsmy8wcT1R-rV3NZn8,59297
204
+ agno/learn/stores/learned_knowledge.py,sha256=raSP6T4zEEYRzEtepA4Vi042yqZpWbM7mIcPSFZiFh8,57001
205
205
  agno/learn/stores/protocol.py,sha256=SaB76BIXCQMTcEHQDNxUxPnOE2Jx9MMPj3tNsk9_VJk,3324
206
206
  agno/learn/stores/session_context.py,sha256=OQFk4OfYmHSNsytTfmm_4DJNTptNoDHWfqGnBHh06zU,48128
207
207
  agno/learn/stores/user_memory.py,sha256=le3Vi1hsokopWeMkme9t-ju6GCP1w6z16iJ6Mi6hKdQ,55648
@@ -614,8 +614,8 @@ agno/utils/models/openai_responses.py,sha256=63f2UgDFCzrr6xQITrGtn42UUHQBcZFUUFM
614
614
  agno/utils/models/schema_utils.py,sha256=L6TkraMClI471H6xYy7V81lhHR4qQloVKCN0bF4Ajw0,5047
615
615
  agno/utils/models/watsonx.py,sha256=fe6jN0hBvOCQurqjS6_9PIwDHt-4kVod9qW236Zs6DU,1496
616
616
  agno/utils/print_response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
617
- agno/utils/print_response/agent.py,sha256=GCC0i-NRYaJzJ2x8B1igVaZ1-hDv_4E1GbvvgiG9xdc,40424
618
- agno/utils/print_response/team.py,sha256=8uu0mfqnkTEDR1Jo6AYNUWHXtQZPh1apkzVh7MQj5Kc,88763
617
+ agno/utils/print_response/agent.py,sha256=NIDrS4zl6FzFyAgMKBF_6V9A9ELUPwMEev73bfddkrc,40416
618
+ agno/utils/print_response/team.py,sha256=cODB1m0AxVlnLseTt2_dlZl02-rFPtwvp-8TPdD_C4c,88755
619
619
  agno/utils/print_response/workflow.py,sha256=pZ7DmJaLx0FWNzXJCKs6gplmA0XAzqxZK1nLQNfePW0,78707
620
620
  agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
621
621
  agno/vectordb/base.py,sha256=0AmdEM2DIE2WdRJIcISEfaQgeYIDpZrMfbnPPI2HrE4,4344
@@ -674,8 +674,8 @@ agno/workflow/step.py,sha256=AgSugOOoWidfZGFtR5PMpgWSBpIeUQB45vmaUDnV7E8,77919
674
674
  agno/workflow/steps.py,sha256=p1RdyTZIKDYOPdxU7FbsX_vySWehPWaobge76Q_UDac,26462
675
675
  agno/workflow/types.py,sha256=t4304WCKB19QFdV3ixXZICcU8wtBza4EBCIz5Ve6MSQ,18035
676
676
  agno/workflow/workflow.py,sha256=S4Iwx3LtpeE_XZ61slYvnM90BdnGhW6Gfax_BKEUG68,218609
677
- agno-2.4.5.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
678
- agno-2.4.5.dist-info/METADATA,sha256=xNizoFgSLOsXRnOqI_MHZB2dUpXeU6Cq_zshHwsTcYk,22335
679
- agno-2.4.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
680
- agno-2.4.5.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
681
- agno-2.4.5.dist-info/RECORD,,
677
+ agno-2.4.6.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
678
+ agno-2.4.6.dist-info/METADATA,sha256=MmLfiyHxq2B7hn_o0JMPG7Hwnk5Hn_yz8RhixiReUOY,21116
679
+ agno-2.4.6.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
680
+ agno-2.4.6.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
681
+ agno-2.4.6.dist-info/RECORD,,
File without changes