agno 2.1.9__py3-none-any.whl → 2.2.0__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 +2048 -1204
- agno/culture/__init__.py +3 -0
- agno/culture/manager.py +954 -0
- agno/db/async_postgres/async_postgres.py +232 -0
- agno/db/async_postgres/schemas.py +15 -0
- agno/db/async_postgres/utils.py +58 -0
- agno/db/base.py +83 -6
- agno/db/dynamo/dynamo.py +162 -0
- agno/db/dynamo/schemas.py +44 -0
- agno/db/dynamo/utils.py +59 -0
- agno/db/firestore/firestore.py +231 -0
- agno/db/firestore/schemas.py +10 -0
- agno/db/firestore/utils.py +96 -0
- agno/db/gcs_json/gcs_json_db.py +190 -0
- agno/db/gcs_json/utils.py +58 -0
- agno/db/in_memory/in_memory_db.py +118 -0
- agno/db/in_memory/utils.py +58 -0
- agno/db/json/json_db.py +129 -0
- agno/db/json/utils.py +58 -0
- agno/db/mongo/mongo.py +222 -0
- agno/db/mongo/schemas.py +10 -0
- agno/db/mongo/utils.py +59 -0
- agno/db/mysql/mysql.py +232 -1
- agno/db/mysql/schemas.py +14 -0
- agno/db/mysql/utils.py +58 -0
- agno/db/postgres/postgres.py +242 -0
- agno/db/postgres/schemas.py +15 -0
- agno/db/postgres/utils.py +58 -0
- agno/db/redis/redis.py +181 -0
- agno/db/redis/schemas.py +14 -0
- agno/db/redis/utils.py +58 -0
- agno/db/schemas/__init__.py +2 -1
- agno/db/schemas/culture.py +120 -0
- agno/db/singlestore/schemas.py +14 -0
- agno/db/singlestore/singlestore.py +231 -0
- agno/db/singlestore/utils.py +58 -0
- agno/db/sqlite/schemas.py +14 -0
- agno/db/sqlite/sqlite.py +274 -7
- agno/db/sqlite/utils.py +62 -0
- agno/db/surrealdb/models.py +51 -1
- agno/db/surrealdb/surrealdb.py +154 -0
- agno/db/surrealdb/utils.py +61 -1
- agno/knowledge/reader/field_labeled_csv_reader.py +0 -2
- agno/memory/manager.py +28 -11
- agno/models/anthropic/claude.py +2 -2
- agno/models/message.py +0 -1
- agno/models/ollama/chat.py +7 -2
- agno/os/app.py +29 -7
- agno/os/interfaces/a2a/router.py +2 -2
- agno/os/interfaces/agui/router.py +2 -2
- agno/os/router.py +7 -7
- agno/os/routers/evals/schemas.py +31 -31
- agno/os/routers/health.py +6 -2
- agno/os/routers/knowledge/schemas.py +49 -47
- agno/os/routers/memory/schemas.py +16 -16
- agno/os/routers/metrics/schemas.py +16 -16
- agno/os/routers/session/session.py +382 -7
- agno/os/schema.py +254 -231
- agno/os/utils.py +1 -1
- agno/run/agent.py +49 -1
- agno/run/team.py +43 -0
- agno/session/summary.py +45 -13
- agno/session/team.py +90 -5
- agno/team/team.py +1118 -857
- agno/tools/gmail.py +59 -14
- agno/utils/agent.py +372 -0
- agno/utils/events.py +144 -2
- agno/utils/print_response/agent.py +10 -6
- agno/utils/print_response/team.py +6 -4
- agno/utils/print_response/workflow.py +7 -5
- agno/utils/team.py +9 -8
- agno/workflow/condition.py +17 -9
- agno/workflow/loop.py +18 -10
- agno/workflow/parallel.py +14 -6
- agno/workflow/router.py +17 -9
- agno/workflow/step.py +14 -6
- agno/workflow/steps.py +14 -6
- agno/workflow/workflow.py +245 -122
- {agno-2.1.9.dist-info → agno-2.2.0.dist-info}/METADATA +60 -23
- {agno-2.1.9.dist-info → agno-2.2.0.dist-info}/RECORD +83 -79
- {agno-2.1.9.dist-info → agno-2.2.0.dist-info}/WHEEL +0 -0
- {agno-2.1.9.dist-info → agno-2.2.0.dist-info}/licenses/LICENSE +0 -0
- {agno-2.1.9.dist-info → agno-2.2.0.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
|
+
Version: 2.2.0
|
|
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"
|
|
@@ -387,9 +388,30 @@ Dynamic: license-file
|
|
|
387
388
|
|
|
388
389
|
## What is Agno?
|
|
389
390
|
|
|
390
|
-
Agno is
|
|
391
|
+
Agno is a multi-agent framework, runtime and control plane. Built for speed, privacy, and scale.
|
|
391
392
|
|
|
392
|
-
|
|
393
|
+
It provides a rich set of primitives for building:
|
|
394
|
+
|
|
395
|
+
- **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.
|
|
396
|
+
- **Multi-Agent Teams** that operate autonomously under a team leader that maintains shared state and context.
|
|
397
|
+
- **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.
|
|
398
|
+
|
|
399
|
+
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.
|
|
400
|
+
|
|
401
|
+
## Getting started
|
|
402
|
+
|
|
403
|
+
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.
|
|
404
|
+
|
|
405
|
+
After that, checkout the [examples gallery](https://docs.agno.com/examples/introduction) and build real-world applications with Agno.
|
|
406
|
+
|
|
407
|
+
## Documentation, Community & More Examples
|
|
408
|
+
|
|
409
|
+
- Docs: <a href="https://docs.agno.com" target="_blank" rel="noopener noreferrer">docs.agno.com</a>
|
|
410
|
+
- Cookbook: <a href="https://github.com/agno-agi/agno/tree/main/cookbook" target="_blank" rel="noopener noreferrer">Cookbook</a>
|
|
411
|
+
- Community forum: <a href="https://community.agno.com/" target="_blank" rel="noopener noreferrer">community.agno.com</a>
|
|
412
|
+
- Discord: <a href="https://discord.gg/4MtYHHrgA8" target="_blank" rel="noopener noreferrer">discord</a>
|
|
413
|
+
|
|
414
|
+
## Example
|
|
393
415
|
|
|
394
416
|
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
417
|
|
|
@@ -424,23 +446,51 @@ if __name__ == "__main__":
|
|
|
424
446
|
agent_os.serve(app="agno_agent:app", reload=True)
|
|
425
447
|
```
|
|
426
448
|
|
|
427
|
-
##
|
|
449
|
+
## Designed for Agent Engineering
|
|
450
|
+
|
|
451
|
+
Agno is a remarkably feature-rich framework, purpose-built for large-scale multi-agent deployments.
|
|
428
452
|
|
|
429
|
-
|
|
453
|
+
| **Category** | **Feature** | **Description** |
|
|
454
|
+
|---------------|-------------|-----------------|
|
|
455
|
+
| **Core Intelligence** | **Model Agnostic** | Works with any model provider so you can use your favorite LLMs. |
|
|
456
|
+
| | **Type Safe** | Enforce structured I/O through `input_schema` and `output_schema` for predictable, composable behavior. |
|
|
457
|
+
| | **Dynamic Context Engineering** | Inject variables, state, and retrieved data on the fly into context. Perfect for dependency-driven agents. |
|
|
458
|
+
| **Memory, Knowledge, and Persistence** | **Persistent Storage** | Give your Agents, Teams, and Workflows a database to persist session history, state, and messages. |
|
|
459
|
+
| | **User Memory** | Built-in memory system that allows Agents to recall user-specific context across sessions. |
|
|
460
|
+
| | **Agentic RAG** | Connect to 20+ vector stores (called **Knowledge** in Agno) with hybrid search + reranking out of the box. |
|
|
461
|
+
| | **Culture (Collective Memory)** | Shared knowledge that compounds across agents and time. |
|
|
462
|
+
| **Execution & Control** | **Human-in-the-Loop** | Native support for confirmations, manual overrides, and external tool execution. |
|
|
463
|
+
| | **Guardrails** | Built-in safeguards for validation, security, and prompt protection. |
|
|
464
|
+
| | **Agent Lifecycle Hooks** | Pre- and post-hooks to validate or transform inputs and outputs. |
|
|
465
|
+
| | **MCP Integration** | First-class support for the Model Context Protocol (MCP) to connect Agents with external systems. |
|
|
466
|
+
| | **Toolkits** | 100+ built-in toolkits with thousands of tools, ready for use across data, code, web, and enterprise APIs. |
|
|
467
|
+
| **Runtime & Evaluation** | **Runtime** | Pre-built FastAPI based runtime with SSE compatible endpoints, ready for production on day 1. |
|
|
468
|
+
| | **Control Plane (UI)** | Integrated interface to visualize, monitor, and debug agent activity in real time. |
|
|
469
|
+
| | **Natively Multimodal** | Agents can process and generate text, images, audio, video, and files. |
|
|
470
|
+
| | **Evals** | Measure your Agents' Accuracy, Performance, and Reliability. |
|
|
471
|
+
| **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. |
|
|
472
|
+
| | **Data Governance** | Your data lives securely in your Agent database, no external data sharing or vendor lock-in. |
|
|
473
|
+
| | **Access Control** | Role-based access (RBAC) and per-agent permissions to protect sensitive contexts and tools. |
|
|
430
474
|
|
|
431
|
-
|
|
475
|
+
Every part of Agno is built for real-world deployment — where developer experience meets production performance.
|
|
432
476
|
|
|
433
|
-
|
|
477
|
+
## AgentOS - Production Runtime for Multi-Agent Systems
|
|
434
478
|
|
|
435
|
-
|
|
479
|
+
AgentOS is Agno's high-performance runtime for serving multi-agent systems in production. Key features include:
|
|
436
480
|
|
|
437
|
-
|
|
481
|
+
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.
|
|
482
|
+
|
|
483
|
+
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.
|
|
484
|
+
|
|
485
|
+
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.
|
|
486
|
+
|
|
487
|
+
Here's what the [AgentOS UI](https://os.agno.com) looks like in action:
|
|
438
488
|
|
|
439
489
|
https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
|
|
440
490
|
|
|
441
491
|
## The Complete Agentic Solution
|
|
442
492
|
|
|
443
|
-
For companies building agents, Agno provides the complete solution:
|
|
493
|
+
For companies building agents, Agno provides the complete agentic solution:
|
|
444
494
|
|
|
445
495
|
- The fastest framework for building agents, multi-agent teams and agentic workflows.
|
|
446
496
|
- A ready-to-use FastAPI app that gets you building AI products on day one.
|
|
@@ -448,19 +498,6 @@ For companies building agents, Agno provides the complete solution:
|
|
|
448
498
|
|
|
449
499
|
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
500
|
|
|
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
501
|
## Setup Your Coding Agent to Use Agno
|
|
465
502
|
|
|
466
503
|
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=
|
|
7
|
+
agno/agent/agent.py,sha256=Qmxp1_fmOWt4qpO9oTDBCmiYF1IIR6NSjUN4LPM8pLk,448928
|
|
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
|
|
@@ -27,67 +27,70 @@ agno/cloud/aws/s3/__init__.py,sha256=6t_fONFVV9pr04svE63yWSCWreBZ_pNTdhw4lqRnLb0
|
|
|
27
27
|
agno/cloud/aws/s3/api_client.py,sha256=nW-Jn8WPILIvdH8niQOPpKMXlAIDB2xYTz0GHRy4PHs,1438
|
|
28
28
|
agno/cloud/aws/s3/bucket.py,sha256=5dkKhjWVmf8dyQEyCTd6DkQlKADBnm0-_VKQgKqtJQM,7798
|
|
29
29
|
agno/cloud/aws/s3/object.py,sha256=ttZPbLm3o63oGIhKgAr_bIf9DOpJlXRmrEVlkbTcJbk,1766
|
|
30
|
+
agno/culture/__init__.py,sha256=nVScbcUeBmkj8l-rJWGOVGytwp5xB6IfUEL_h6atzQw,118
|
|
31
|
+
agno/culture/manager.py,sha256=Y5vfysyoCeEg_g9GnkDKlMqQa2zUXSP0k3wO5kWweIg,40037
|
|
30
32
|
agno/db/__init__.py,sha256=bfd_tpKsIKCjZosnFqID26VoWqy88v8gzkf9kLHToY4,625
|
|
31
|
-
agno/db/base.py,sha256=
|
|
33
|
+
agno/db/base.py,sha256=8Zf5bf2jHOwpLFQz8oOYQnNfjnHFdKjsVRhb4ZxfAHw,18998
|
|
32
34
|
agno/db/utils.py,sha256=eL0prfDrTEfOwNlOZeoZE4pu59bNJET22uh8wgzz-cw,4879
|
|
33
35
|
agno/db/async_postgres/__init__.py,sha256=hrSt23PFoBqje-AdZV3z0lBRtR8M3NagPH052A4DlqM,97
|
|
34
|
-
agno/db/async_postgres/async_postgres.py,sha256=
|
|
35
|
-
agno/db/async_postgres/schemas.py,sha256=
|
|
36
|
-
agno/db/async_postgres/utils.py,sha256=
|
|
36
|
+
agno/db/async_postgres/async_postgres.py,sha256=DxthDb16rnUxGpTdadC-jcJ8vbaXaC0B1eo2-_3Z2XE,78476
|
|
37
|
+
agno/db/async_postgres/schemas.py,sha256=M2c4Mr7_pG_R8_cGJTiX-h1QGckMePipcpKat0MVfLQ,6006
|
|
38
|
+
agno/db/async_postgres/utils.py,sha256=JDHZ-6JkTZQ3DA-71cmlZpgKfqx5cEkQEj2Phq4hyZQ,12268
|
|
37
39
|
agno/db/dynamo/__init__.py,sha256=fZ7NwKbyhoIu7_4T6hVz44HkIINXMnTfFrDrgB6bpEo,67
|
|
38
|
-
agno/db/dynamo/dynamo.py,sha256=
|
|
39
|
-
agno/db/dynamo/schemas.py,sha256=
|
|
40
|
-
agno/db/dynamo/utils.py,sha256=
|
|
40
|
+
agno/db/dynamo/dynamo.py,sha256=ayii2yLJ267ZwzCyF6GAxSXaOjE7-HAStnLQGneYwg8,78220
|
|
41
|
+
agno/db/dynamo/schemas.py,sha256=Pdtpa0wV_M8G_inM2rA8pBn2LdxdjG-irltQpYIQPMo,12932
|
|
42
|
+
agno/db/dynamo/utils.py,sha256=dKVLfZOGvyCrEcVZZ6t1mHwyqZvqSNFzq0l-xVhGyIU,27390
|
|
41
43
|
agno/db/firestore/__init__.py,sha256=lYAJjUs4jMxJFty1GYZw464K35zeuBlcoFR9uuIQYtI,79
|
|
42
|
-
agno/db/firestore/firestore.py,sha256=
|
|
43
|
-
agno/db/firestore/schemas.py,sha256=
|
|
44
|
-
agno/db/firestore/utils.py,sha256=
|
|
44
|
+
agno/db/firestore/firestore.py,sha256=dFAIRpRP3kyz5WpP3TgW7uUSR4SAqyLdMavDyBIqB0U,70635
|
|
45
|
+
agno/db/firestore/schemas.py,sha256=sPbi2teuzCfRECnCyj6LrNNu0drSqbBHpH-o1xoJYfs,4392
|
|
46
|
+
agno/db/firestore/utils.py,sha256=ddmij9sdKDPbAnpUIyA74G1L55md9JWrrwGAssjy1Es,13808
|
|
45
47
|
agno/db/gcs_json/__init__.py,sha256=aTR4o3aFrzfANHtRw7nX9uc5_GsY52ch0rmoo7uXuc4,76
|
|
46
|
-
agno/db/gcs_json/gcs_json_db.py,sha256=
|
|
47
|
-
agno/db/gcs_json/utils.py,sha256=
|
|
48
|
+
agno/db/gcs_json/gcs_json_db.py,sha256=_9mBnZw9RUFWU4aMZTPW6Kl_N4bOE58EhVYYlid5INA,54793
|
|
49
|
+
agno/db/gcs_json/utils.py,sha256=wl7Pl88uMacRiYxxnq9VeDT1qA9QY-VhQjClH49E43o,8887
|
|
48
50
|
agno/db/in_memory/__init__.py,sha256=OvR_FONhOh9PmcRfUA_6gvplZT5UGIBAgVKqVg6SWTA,80
|
|
49
|
-
agno/db/in_memory/in_memory_db.py,sha256=
|
|
50
|
-
agno/db/in_memory/utils.py,sha256=
|
|
51
|
+
agno/db/in_memory/in_memory_db.py,sha256=QXt4EYU6DsqQBErlDLkktbjaXfyp7mLAdpTNKDQeWQ4,46222
|
|
52
|
+
agno/db/in_memory/utils.py,sha256=c50_QSw2DHeujjl5iHlJlgWxlmNHXwKl3ZwyLvVgED4,8057
|
|
51
53
|
agno/db/json/__init__.py,sha256=zyPTmVF9S-OwXCL7FSkrDmunZ_Q14YZO3NYUv1Pa14Y,62
|
|
52
|
-
agno/db/json/json_db.py,sha256=
|
|
53
|
-
agno/db/json/utils.py,sha256=
|
|
54
|
+
agno/db/json/json_db.py,sha256=f511KuD2ibawSSlgRKJVG7U3naFDxs5_cZuS8OPFGm0,52925
|
|
55
|
+
agno/db/json/utils.py,sha256=zt47kshV7Bm7fniukAvUj87UlGexaVPe9hztOGWBbgM,8935
|
|
54
56
|
agno/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
57
|
agno/db/migrations/v1_to_v2.py,sha256=gj8deaEWUxOr0qJyMfjOpV3LxEh-otOSOxDckeUq0qU,24938
|
|
56
58
|
agno/db/mongo/__init__.py,sha256=EPa9QkGNVwnuej72LhZDCeASMXa-e0pR20jsgwa9BhY,63
|
|
57
|
-
agno/db/mongo/mongo.py,sha256=
|
|
58
|
-
agno/db/mongo/schemas.py,sha256=
|
|
59
|
-
agno/db/mongo/utils.py,sha256=
|
|
59
|
+
agno/db/mongo/mongo.py,sha256=G2iu5KzTi9jXwMZXF2OmcqGXTndh5GbXY-aEjLXxLZ0,77128
|
|
60
|
+
agno/db/mongo/schemas.py,sha256=d2ZxqqzKYwz0Iexgrv1HWArGnmk3KUKJ37PCzFykodI,2314
|
|
61
|
+
agno/db/mongo/utils.py,sha256=UO-mI3w2-EUzgFQ3gzfT7-SeXlofau_eUzWknOhPvjY,9248
|
|
60
62
|
agno/db/mysql/__init__.py,sha256=ohBMZ1E6ctioEF0XX5PjC4LtUQrc6lFkjsE4ojyXA8g,63
|
|
61
|
-
agno/db/mysql/mysql.py,sha256=
|
|
62
|
-
agno/db/mysql/schemas.py,sha256=
|
|
63
|
-
agno/db/mysql/utils.py,sha256=
|
|
63
|
+
agno/db/mysql/mysql.py,sha256=_TXCD-_eVCyjAMhj4WOGVFTtjwRkkL28D7C-vZqPDdU,95380
|
|
64
|
+
agno/db/mysql/schemas.py,sha256=OpdAWhh-ElwQ5JOg1MKJqGJ16qzVTuyS56iH9Zw3oHs,6171
|
|
65
|
+
agno/db/mysql/utils.py,sha256=jF06bYYASQYdpmR6lwjD4iAp3-fq7moezjOnEYpju8g,12356
|
|
64
66
|
agno/db/postgres/__init__.py,sha256=OQS1Glq2fn86wZXFp9KYS_pysHb435c-xdqDTwWf6iU,145
|
|
65
|
-
agno/db/postgres/postgres.py,sha256=
|
|
66
|
-
agno/db/postgres/schemas.py,sha256=
|
|
67
|
-
agno/db/postgres/utils.py,sha256=
|
|
67
|
+
agno/db/postgres/postgres.py,sha256=uHPjaIn2M1whqVPVR2mXvxCdVb0FXAlJrB3VzjCX5Bw,91621
|
|
68
|
+
agno/db/postgres/schemas.py,sha256=O049oyPU07tHwnyuOzYyiKcK1NYvh6cQmmsFOvA7LTs,5971
|
|
69
|
+
agno/db/postgres/utils.py,sha256=902GcRbXodhEl_0MwIZHKlvJoTBVD8oqM1uKieTOPnw,11737
|
|
68
70
|
agno/db/redis/__init__.py,sha256=rZWeZ4CpVeKP-enVQ-SRoJ777i0rdGNgoNDRS9gsfAc,63
|
|
69
|
-
agno/db/redis/redis.py,sha256=
|
|
70
|
-
agno/db/redis/schemas.py,sha256=
|
|
71
|
-
agno/db/redis/utils.py,sha256=
|
|
72
|
-
agno/db/schemas/__init__.py,sha256=
|
|
71
|
+
agno/db/redis/redis.py,sha256=cg-kqHaPfBw1XnJ3ZT2zAWSGZ-jul1ziOFa0B84RANY,62938
|
|
72
|
+
agno/db/redis/schemas.py,sha256=3WilZq3NqZqRONyu_mAjjmQpClgYDYoWjfkvlOh0Tfw,4038
|
|
73
|
+
agno/db/redis/utils.py,sha256=b6FthFWSgrkMtjHSclPAyjW-ZwYLFn_3r-WFiCkuntI,11232
|
|
74
|
+
agno/db/schemas/__init__.py,sha256=g72Zr5_nm00yXHStv4pf9PG9bGLKXEK7Av6YQtrDbCQ,147
|
|
75
|
+
agno/db/schemas/culture.py,sha256=w4azKAVLf5X4xyRUFXMIEq0CA0pnyeN03W3eMpqScxo,4342
|
|
73
76
|
agno/db/schemas/evals.py,sha256=T1zIiwrN5fxZVD2em85wQ9CV-HSVZvNF4D4v9_w30VA,786
|
|
74
77
|
agno/db/schemas/knowledge.py,sha256=qVL6jEdaUG92WJw70-FrA7atetPqrpZnLYkYZDuiYho,1227
|
|
75
78
|
agno/db/schemas/memory.py,sha256=kKlJ6AWpbwz-ZJfBJieartPP0QqeeoKAXx2Ity4Yj-Y,1461
|
|
76
79
|
agno/db/schemas/metrics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
80
|
agno/db/singlestore/__init__.py,sha256=dufbaod8ZZIeZIVi0hYJQ8Eu2DfIfWdIy00cpqAsx9U,87
|
|
78
|
-
agno/db/singlestore/schemas.py,sha256=
|
|
79
|
-
agno/db/singlestore/singlestore.py,sha256=
|
|
80
|
-
agno/db/singlestore/utils.py,sha256=
|
|
81
|
+
agno/db/singlestore/schemas.py,sha256=Eb9wipCjWr48dlF3CMDa53WDvFsr7QhLOSaTgbUkMKg,6178
|
|
82
|
+
agno/db/singlestore/singlestore.py,sha256=JQsHRPv-D36e0klJnYc2__0DRFxyjfXKN0XXYXKafkI,93288
|
|
83
|
+
agno/db/singlestore/utils.py,sha256=ZYkpaSwFE_EiJ06vOd_bpr22RvdercFObTTlw3hfq2M,13667
|
|
81
84
|
agno/db/sqlite/__init__.py,sha256=LocJ-suv6xpdun8HUxgbD3bTgmQArQvLJkbpb1pRGy0,67
|
|
82
|
-
agno/db/sqlite/schemas.py,sha256
|
|
83
|
-
agno/db/sqlite/sqlite.py,sha256=
|
|
84
|
-
agno/db/sqlite/utils.py,sha256=
|
|
85
|
+
agno/db/sqlite/schemas.py,sha256=NyEvAFG-hi3Inm5femgJdorxJ5l2-bXLWBhxJ4r7jW0,5832
|
|
86
|
+
agno/db/sqlite/sqlite.py,sha256=kjByY--whzmwLsc8KpiB3Ncgxp4LKtMTfEggmn5DK8s,93910
|
|
87
|
+
agno/db/sqlite/utils.py,sha256=BLpiCOsydc9qIG-3aBtTibk3egmD272whUkM8dE0GE0,12068
|
|
85
88
|
agno/db/surrealdb/__init__.py,sha256=C8qp5-Nx9YnSmgKEtGua-sqG_ntCXONBw1qqnNyKPqI,75
|
|
86
89
|
agno/db/surrealdb/metrics.py,sha256=oKDRyjRQ6KR3HaO8zDHQLVMG7-0NDkOFOKX5I7mD5FA,10336
|
|
87
|
-
agno/db/surrealdb/models.py,sha256=
|
|
90
|
+
agno/db/surrealdb/models.py,sha256=2KBxSxiEI4yQ2OTOr1HVeL8Fd52tQfWkM53kwzqUmyw,11512
|
|
88
91
|
agno/db/surrealdb/queries.py,sha256=s__yJSFIx387IEflcDdti7T5j6H9NX_-zIj13F9CN9s,2051
|
|
89
|
-
agno/db/surrealdb/surrealdb.py,sha256=
|
|
90
|
-
agno/db/surrealdb/utils.py,sha256=
|
|
92
|
+
agno/db/surrealdb/surrealdb.py,sha256=QAmtMUdJIWY7E1xmZJggHi43h7V4pDSS4eLwhxun0xs,52190
|
|
93
|
+
agno/db/surrealdb/utils.py,sha256=PcZo_cTy-jI59I-XhzAomRLdV9-m0irtO4C-AYGSghs,5405
|
|
91
94
|
agno/eval/__init__.py,sha256=vCYcIbfOkT2lL8vZJ9zsea6j3byp5A-mxEb_45VaD8I,449
|
|
92
95
|
agno/eval/accuracy.py,sha256=vfJ9Kx33YGsXenNKVHPK5h0IeB2tZMlfSKu6OA-mj9g,33065
|
|
93
96
|
agno/eval/performance.py,sha256=b4BuSlGkraym9EQick4KraA1OyMa0U7LMjoFozpNbIs,30528
|
|
@@ -140,7 +143,7 @@ agno/knowledge/reader/arxiv_reader.py,sha256=PtqP3bB4eZAYUlK9_ytPCFiy4icvMj7bIZN
|
|
|
140
143
|
agno/knowledge/reader/base.py,sha256=9D3GU6RdGIvVD1cdOHNieA8vCIZxUBJ6HLbwl1Ol-1I,3631
|
|
141
144
|
agno/knowledge/reader/csv_reader.py,sha256=GZiRh9yx0TM_GAEOQiBp3VfffbwGBZ7M2e5eSs45gIs,6491
|
|
142
145
|
agno/knowledge/reader/docx_reader.py,sha256=oLQzbtZJg3wNFFzddrV77iDIV2Az4gvM32DLA0QrKZE,3309
|
|
143
|
-
agno/knowledge/reader/field_labeled_csv_reader.py,sha256=
|
|
146
|
+
agno/knowledge/reader/field_labeled_csv_reader.py,sha256=cHjmEtmLNF9DRk0N5OtKOxAwYHJlMLQ0_7BScRqAxkc,11643
|
|
144
147
|
agno/knowledge/reader/firecrawl_reader.py,sha256=SCbcRLkMrUb2WiC6SPuAoZULtHITa2VAmBtZlGmamGM,6855
|
|
145
148
|
agno/knowledge/reader/json_reader.py,sha256=KfDgHno_XHORIGaoA1Q2Y5M7nkcTFM9IUzWXkjVjYKQ,3245
|
|
146
149
|
agno/knowledge/reader/markdown_reader.py,sha256=HoSEkX2Svl2tEMDyzAmRNmwxsterb3i3-1-EQR6N4IU,5272
|
|
@@ -160,18 +163,18 @@ agno/knowledge/reranker/cohere.py,sha256=2Be5blVyeZ3vYlnFa2NYvJuytjaCB8G2OWJ11pQ
|
|
|
160
163
|
agno/knowledge/reranker/infinity.py,sha256=N9geg9xZqRdJZksfQcvbGJgMymXrQVJl_K5KICWqH8o,7193
|
|
161
164
|
agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_UjezfNrjFYXpNVHD4U-U,1912
|
|
162
165
|
agno/memory/__init__.py,sha256=XWKJU5SJObYZqEKMZ2XYwgH8-YeuWUoSRfT4dEI5HnY,101
|
|
163
|
-
agno/memory/manager.py,sha256=
|
|
166
|
+
agno/memory/manager.py,sha256=IWMnFxRF604zLY1jQArOggMwLjUUKXiPWt7RtLlpHUk,51907
|
|
164
167
|
agno/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
168
|
agno/models/base.py,sha256=bjP0Xt5-Jlk1I_7wHmuv8lhUPE75WzZ_iF3U-d81TUI,85214
|
|
166
169
|
agno/models/defaults.py,sha256=1_fe4-ZbNriE8BgqxVRVi4KGzEYxYKYsz4hn6CZNEEM,40
|
|
167
|
-
agno/models/message.py,sha256=
|
|
170
|
+
agno/models/message.py,sha256=HMlY71ZCDWCUrNTqIbRezWZK5FfWcvcs5eg_hhjbuqo,19023
|
|
168
171
|
agno/models/metrics.py,sha256=81IILXZwGmOTiWK003bi5mg4bM1f4LCWbwyamjFzp18,4500
|
|
169
172
|
agno/models/response.py,sha256=UIuqTBVfXOpxlpf8wOzc6wIrb0vR0FFO6JIkASaPfOQ,4213
|
|
170
173
|
agno/models/utils.py,sha256=PprNlVI8d8loHayjRsrc4TL38sfkFMS3EVZcF5cLXoA,669
|
|
171
174
|
agno/models/aimlapi/__init__.py,sha256=XQcFRvt4qJ8ol9nCC0XKEkVEDivdNf3nZNoJZMZ5m8M,78
|
|
172
175
|
agno/models/aimlapi/aimlapi.py,sha256=9Qh-b8HvFSvmPP3VBNGT00qy9izHLMWgR-KDQCE5CM0,1493
|
|
173
176
|
agno/models/anthropic/__init__.py,sha256=nbReX3p17JCwfrMDR9hR7-OaEFZm80I7dng93dl-Fhw,77
|
|
174
|
-
agno/models/anthropic/claude.py,sha256=
|
|
177
|
+
agno/models/anthropic/claude.py,sha256=4D4yJZc5R3K1L_hL-yJmK5zwcv0f0diHkfkFOEDqNwE,28144
|
|
175
178
|
agno/models/aws/__init__.py,sha256=TbcwQwv9A7KjqBM5RQBR8x46GvyyCxbBCjwkpjfVGKE,352
|
|
176
179
|
agno/models/aws/bedrock.py,sha256=ScZcGwOMh-N0DfArXtDVzKy467QPAN0OS8llBNAc8cQ,28880
|
|
177
180
|
agno/models/aws/claude.py,sha256=sL47z9fM3jxGbARkr0mlAVYEKKX854J3u-Qeb5gIADo,14746
|
|
@@ -224,7 +227,7 @@ agno/models/nexus/nexus.py,sha256=rJcBQXR1aqUiLWMPBRuHIEh87wVrsqXup1hr_smanBQ,63
|
|
|
224
227
|
agno/models/nvidia/__init__.py,sha256=O0g3_0_ciOz0AH4Y4CAL7YRfhdDPAvhDzNjJmgWKT78,74
|
|
225
228
|
agno/models/nvidia/nvidia.py,sha256=0vpEq4cBY_5JdBzGoD95rBdro6dpVNAV5ioKz3lpnfs,948
|
|
226
229
|
agno/models/ollama/__init__.py,sha256=TIhwxG7ek3eyfoKTLoZQXwdgzcIngYKjbjSlkf2gkWE,72
|
|
227
|
-
agno/models/ollama/chat.py,sha256=
|
|
230
|
+
agno/models/ollama/chat.py,sha256=25gueHUyGosb-XsNbzq7pjuFMh4ko4KOvyFIyTJcUpA,16240
|
|
228
231
|
agno/models/openai/__init__.py,sha256=OssVgQRpsriU6aJZ3lIp_jFuqvX6y78L4Fd3uTlmI3E,225
|
|
229
232
|
agno/models/openai/chat.py,sha256=ZdFj0xeCEGI1_UR_q_IsHl_KqoQ076g8LG5g32zJRYc,37110
|
|
230
233
|
agno/models/openai/like.py,sha256=wmw9PfAVqluBs4MMY73dgjelKn1yl5JDKyCRvaNFjFw,745
|
|
@@ -252,23 +255,23 @@ agno/models/vllm/vllm.py,sha256=UtiiSvUR4pG_1CzuhY5MWduRgzM2hGVTakKJ6ZBdQmo,2730
|
|
|
252
255
|
agno/models/xai/__init__.py,sha256=ukcCxnCHxTtkJNA2bAMTX4MhCv1wJcbiq8ZIfYczIxs,55
|
|
253
256
|
agno/models/xai/xai.py,sha256=jA6_39tfapkjkHKdzbKaNq1t9qIvO1IaZY1hQqEmFVs,4181
|
|
254
257
|
agno/os/__init__.py,sha256=h8oQu7vhD5RZf09jkyM_Kt1Kdq_d5kFB9gJju8QPwcY,55
|
|
255
|
-
agno/os/app.py,sha256=
|
|
258
|
+
agno/os/app.py,sha256=F_5XGuZMVc2Y4X9-9WrF8JGvE9Ae74s1AVLo01LU_Lk,27835
|
|
256
259
|
agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
|
|
257
260
|
agno/os/config.py,sha256=u4R9yazQXIcKjR3QzEIZw_XAe_OHp3xn0ff7SVkj2jA,2893
|
|
258
261
|
agno/os/mcp.py,sha256=vJhjjSm1KC61HLoxPj24lSrjkjo7plkoFfcQX2BmTp0,10253
|
|
259
|
-
agno/os/router.py,sha256=
|
|
260
|
-
agno/os/schema.py,sha256=
|
|
262
|
+
agno/os/router.py,sha256=1Q9YsaV4N85taBm8yB9F5g6hAj4RlpJ8RAqpmFCU-dM,71056
|
|
263
|
+
agno/os/schema.py,sha256=8WFGY1rgC5A3nbxwb9NqhV2dg4PyFxqlLCGsYhOFJIg,52749
|
|
261
264
|
agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
|
|
262
|
-
agno/os/utils.py,sha256=
|
|
265
|
+
agno/os/utils.py,sha256=v4EQFRvAMC1NOhhvYc2J_Dxx7-PKz-iZIaOP78731zg,19996
|
|
263
266
|
agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
264
267
|
agno/os/interfaces/base.py,sha256=vXkr1tRjWHTcmBlQFzvQjqURLhObmFtUAx82uij_j48,542
|
|
265
268
|
agno/os/interfaces/a2a/__init__.py,sha256=Fs7--dx9drvtVS9QjsCCm0P7c-hJ7TzU8gNwKTQsZDA,62
|
|
266
269
|
agno/os/interfaces/a2a/a2a.py,sha256=UiTX-GOuXxp1CQzRgtmgSSYNn2iFC_vKYnC37OidygM,1337
|
|
267
|
-
agno/os/interfaces/a2a/router.py,sha256=
|
|
270
|
+
agno/os/interfaces/a2a/router.py,sha256=OpNCHhYoCUyfcuRtiOdvUrUZnxfFB1jhMWraLA85XMg,10985
|
|
268
271
|
agno/os/interfaces/a2a/utils.py,sha256=rTn9x0UGbX53EiAsljf87PmzYwLuvqaobUWpCn35ut0,39285
|
|
269
272
|
agno/os/interfaces/agui/__init__.py,sha256=1zrGICk4roXUINwSFZfqH6sBsbHmD5KjGYVJMGg4fKQ,66
|
|
270
273
|
agno/os/interfaces/agui/agui.py,sha256=PKGoDDbtQFmEC0zRwZmsjS_5t9bJWJ-ZGwxEQsu9P-U,1415
|
|
271
|
-
agno/os/interfaces/agui/router.py,sha256=
|
|
274
|
+
agno/os/interfaces/agui/router.py,sha256=8cMaq-IiI54jF7K8EHIVOAEuKFIXFu11jQuGY5HZfoA,4851
|
|
272
275
|
agno/os/interfaces/agui/utils.py,sha256=d97r8EJ9GZ3TwmI53ZcOTy4ICHiFX3s6WY75UnsolyQ,20162
|
|
273
276
|
agno/os/interfaces/slack/__init__.py,sha256=F095kOcgiyk_KzIozNNieKwpVc_NR8HYpuO4bKiCNN0,70
|
|
274
277
|
agno/os/interfaces/slack/router.py,sha256=KVR6jerRnjw6hRLDs3NR8ScIJx2MDACcVOAyQyJEm6A,5466
|
|
@@ -281,23 +284,23 @@ agno/os/interfaces/whatsapp/whatsapp.py,sha256=tNJncEu_hm0lFOHbjaSoz5-VIKORR_pyW
|
|
|
281
284
|
agno/os/middleware/__init__.py,sha256=EYsNzeixFgL3n8kepKWXT42fTTmrNyD8b8rOdXecMRI,94
|
|
282
285
|
agno/os/middleware/jwt.py,sha256=xw9jQkVFMTTzUVird1k-egAYBmPd174L06YflYCvB5Q,9468
|
|
283
286
|
agno/os/routers/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
|
|
284
|
-
agno/os/routers/health.py,sha256=
|
|
287
|
+
agno/os/routers/health.py,sha256=JSbV48eRucSkMhBUfr0rsaMaXQEH4oBU3o4YF1sWvRQ,912
|
|
285
288
|
agno/os/routers/home.py,sha256=xe8DYJkRgad55qiza0lHt8pUIV5PLSyu2MkybjuPDDE,1708
|
|
286
289
|
agno/os/routers/evals/__init__.py,sha256=3s0M-Ftg5A3rFyRfTATs-0aNA6wcbj_5tCvtwH9gORQ,87
|
|
287
290
|
agno/os/routers/evals/evals.py,sha256=oA6KpeIjlclMAXn1XkpJ147SvJZxr3AhsX__5fl9dX4,18266
|
|
288
|
-
agno/os/routers/evals/schemas.py,sha256=
|
|
291
|
+
agno/os/routers/evals/schemas.py,sha256=G6XvlEcl0FtgdsmHUjrEWxwxwGMhuYR2HsjfFT3QXUM,6523
|
|
289
292
|
agno/os/routers/evals/utils.py,sha256=Zi5f2hWqcDrcZ3f3MfC1Sx9_NUYz7rzIt8D-FrluwhM,5538
|
|
290
293
|
agno/os/routers/knowledge/__init__.py,sha256=ZSqMQ8X7C_oYn8xt7NaYlriarWUpHgaWDyHXOWooMaU,105
|
|
291
294
|
agno/os/routers/knowledge/knowledge.py,sha256=Hq6nIjmzygAZ6uT340ttot7Rilkfnedt7PbpuVjiDrg,43849
|
|
292
|
-
agno/os/routers/knowledge/schemas.py,sha256=
|
|
295
|
+
agno/os/routers/knowledge/schemas.py,sha256=ccf-KsZmcm99voPH1yvNngc3W5IC9SRkni_5-_J2erk,8957
|
|
293
296
|
agno/os/routers/memory/__init__.py,sha256=9hrYFc1dkbsLBqKfqyfioQeLX9TTbLrJx6lWDKNNWbc,93
|
|
294
297
|
agno/os/routers/memory/memory.py,sha256=1by03MSaE0ysd4DaUVHxAs3lslL4gql9_HSFfMoJmiQ,20432
|
|
295
|
-
agno/os/routers/memory/schemas.py,sha256=
|
|
298
|
+
agno/os/routers/memory/schemas.py,sha256=ObLVb4tbDXSPCrSpAmsyGKgT9qAM1BI8sZLv9wtUyrU,2658
|
|
296
299
|
agno/os/routers/metrics/__init__.py,sha256=Uw6wWEikLpF5hHxBkHtFyaTuz7OUerGYWk0JW7teUGQ,97
|
|
297
300
|
agno/os/routers/metrics/metrics.py,sha256=X0BUBLqX5YKOPVjS2J7SvOYgX1iq7sZjpIYO-gSOBY0,8485
|
|
298
|
-
agno/os/routers/metrics/schemas.py,sha256=
|
|
301
|
+
agno/os/routers/metrics/schemas.py,sha256=1YsD01b1-mtJlh5HhW9zvPYok9Q2nPpDhN-gJ6B88sU,2674
|
|
299
302
|
agno/os/routers/session/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
|
|
300
|
-
agno/os/routers/session/session.py,sha256=
|
|
303
|
+
agno/os/routers/session/session.py,sha256=FTZd3tHUz11nBhWDXjOJ1sDg5IAZ74D5lnrfhjuq1-s,51445
|
|
301
304
|
agno/reasoning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
305
|
agno/reasoning/anthropic.py,sha256=RRGINflEXuY5kkUbC8_1ztTVY708YaUm3dEqSW7twcI,3130
|
|
303
306
|
agno/reasoning/azure_ai_foundry.py,sha256=VL7DmFpuYMf_gLFAZ9kUCS7Zb3pNhDaEingRZcyUdQY,2594
|
|
@@ -311,19 +314,19 @@ agno/reasoning/openai.py,sha256=JYk-mR9cMf1ibprX3MdL8oeCEDyQ3XaJw9PAIYvWeGk,3234
|
|
|
311
314
|
agno/reasoning/step.py,sha256=6DaOb_0DJRz9Yh1w_mxcRaOSVzIQDrj3lQ6rzHLdIwA,1220
|
|
312
315
|
agno/reasoning/vertexai.py,sha256=O9ntvalkIY2jLmWviEH1DnecMskqTL-mRZQBZohoHiU,2974
|
|
313
316
|
agno/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
|
-
agno/run/agent.py,sha256=
|
|
317
|
+
agno/run/agent.py,sha256=Nj22h_EFgaspc_YLgJrlY-sVYGkubAOiwrUIfy9o_5Y,25454
|
|
315
318
|
agno/run/base.py,sha256=x37ecdhKdb3dbW23d8t2JPBZwrwIC93lRvT1-76CK0c,7059
|
|
316
319
|
agno/run/cancel.py,sha256=yoSj3fnx8D7Gf-fSngVIgd3GOp3tRaDhHH_4QeHDoAk,2667
|
|
317
320
|
agno/run/messages.py,sha256=rAC4CLW-xBA6qFS1BOvcjJ9j_qYf0a7sX1mcdY04zMU,1126
|
|
318
|
-
agno/run/team.py,sha256=
|
|
321
|
+
agno/run/team.py,sha256=kYcFH58EZbE17o338cEVOzchulVrz4-NVEYCvBjzf4E,25905
|
|
319
322
|
agno/run/workflow.py,sha256=sgYN4VeiDzXP-w16pE68uGWUlZSVCa3UCE98tHWSEqY,22662
|
|
320
323
|
agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
|
|
321
324
|
agno/session/agent.py,sha256=vut3IwCivUu0vvuht_1c3rUhW61NZee6whxDQUsEkUM,9756
|
|
322
|
-
agno/session/summary.py,sha256=
|
|
323
|
-
agno/session/team.py,sha256=
|
|
325
|
+
agno/session/summary.py,sha256=5lKMepDMh3bp1Uo8EJMvHHQRwLiB14eF53iMkg0wumM,10012
|
|
326
|
+
agno/session/team.py,sha256=e1GagwJOwmhjvijUiCitOu0YCuf_BadAtG2KC4n34ic,13390
|
|
324
327
|
agno/session/workflow.py,sha256=tluE_3ERMBYJtffpwlrhdETWlzJk6Xw2x06FZ1Y3fXg,7397
|
|
325
328
|
agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
|
|
326
|
-
agno/team/team.py,sha256=
|
|
329
|
+
agno/team/team.py,sha256=JPe66RR2g7KZubr-vCYUAaJMTVLAybEVhn2GexKqqsY,390424
|
|
327
330
|
agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
|
|
328
331
|
agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
|
|
329
332
|
agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
|
|
@@ -366,7 +369,7 @@ agno/tools/firecrawl.py,sha256=sMV6XRaSIyTSkTJbtMdIQPTsN11ozJ78YDDi04kBvQE,5341
|
|
|
366
369
|
agno/tools/function.py,sha256=QDbGgK8BYvFHuPRnVxMb-bXCao8z1hvkwBm8eaKe4m0,45671
|
|
367
370
|
agno/tools/giphy.py,sha256=_wOCWVnMdFByE9Yoz4Pf2MoKxSjkUTiPJZ928_BNe2M,3070
|
|
368
371
|
agno/tools/github.py,sha256=wct6P00YzF3zgWoV2c5aHeXX_2dgb9LqRwJAboi6QXw,70286
|
|
369
|
-
agno/tools/gmail.py,sha256=
|
|
372
|
+
agno/tools/gmail.py,sha256=gcpLfTQP--TJz9bPD12SDwwHickSLZ7yugWZcNNIuGg,29799
|
|
370
373
|
agno/tools/google_bigquery.py,sha256=j0c14CgGK8KvD7eEirsdAx7RSwcfMheugn84ySq6miU,4483
|
|
371
374
|
agno/tools/google_drive.py,sha256=dxGr_NhMsqFsr_tR3w4MgLXm7_nlCTI43sCmKw60N_4,11159
|
|
372
375
|
agno/tools/google_maps.py,sha256=AqPEIt4u6B2kQtzOnL5PH3RXoefCfjT_Uvm3coAqzaY,9513
|
|
@@ -447,6 +450,7 @@ agno/tools/models/nebius.py,sha256=H06zDhYfrZuV1p-OfIWgfK99TRwkZShswMkbaS-jC4k,4
|
|
|
447
450
|
agno/tools/streamlit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
448
451
|
agno/tools/streamlit/components.py,sha256=hYYyr4FRMsNDV8IgK68_oiDF-Qi9djChZmDcg3s6Uu8,4016
|
|
449
452
|
agno/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
453
|
+
agno/utils/agent.py,sha256=upPgFVmO6fgo4BoUIjkFa3BkuNtZ5VilgrXZWvWd6kc,14832
|
|
450
454
|
agno/utils/audio.py,sha256=kdPMr_wYh-NyxQ-U57hyulK0Y7iIkuVinL9AQ7w64EU,1455
|
|
451
455
|
agno/utils/certs.py,sha256=Dtqmcwngq6b-27gN7Zsmo9lKlMPYd70UNexLMqpX3BE,683
|
|
452
456
|
agno/utils/code_execution.py,sha256=JAzcsuUJVO8ZVcD9AgX_O9waBegjhbrHkQZp-YZGsdA,415
|
|
@@ -454,7 +458,7 @@ agno/utils/common.py,sha256=EJaERgzrJnin1i0Aorv0Sf5y8AfMQWM-8yYhuYtD_4Q,4445
|
|
|
454
458
|
agno/utils/dttm.py,sha256=sk7olzbUlMl8ibAGx24sxoP0DGBCnH81VQRYjqIcpDg,289
|
|
455
459
|
agno/utils/enum.py,sha256=wDHnruIf8cQU-_QdryY9LBugPCrlj-nOabQuEFnmeYM,753
|
|
456
460
|
agno/utils/env.py,sha256=o8OwKhx78vi8MaXPes10mXejmJ13CqAh7ODKMS1pmcM,438
|
|
457
|
-
agno/utils/events.py,sha256=
|
|
461
|
+
agno/utils/events.py,sha256=tY0f2qRKhLTilDyDl3evRGZRQHTSBpHAwPDZjHitYY0,28033
|
|
458
462
|
agno/utils/format_str.py,sha256=Zp9dDGMABUJzulp2bs41JiNv0MqmMX0qPToL7l_Ab1c,376
|
|
459
463
|
agno/utils/functions.py,sha256=eHvGqO2uO63TR-QmmhZy2DEnC0xkAfhBG26z77T7jCo,6306
|
|
460
464
|
agno/utils/gemini.py,sha256=2IMG68G41nfD-5dSepRu9ZrZa_20AvRyqygeAtHgOJQ,15609
|
|
@@ -480,7 +484,7 @@ agno/utils/serialize.py,sha256=XvQA_KSkVd5qI1QuZwdQpCsl1IOKddFu52Jl6WQASqU,904
|
|
|
480
484
|
agno/utils/shell.py,sha256=JaY14Fq3ulodG4SeSdLEoOZDI4JJlmCbdgwK5beJuc8,700
|
|
481
485
|
agno/utils/streamlit.py,sha256=IKKOkYGqlSvW0JKlWrI2393a4DmL4gW5rW-cnEhhTZ4,17993
|
|
482
486
|
agno/utils/string.py,sha256=iO1etmjHVxnPMTixAKlpR1vnBnRapYL2pm_cjhS06Ww,7557
|
|
483
|
-
agno/utils/team.py,sha256=
|
|
487
|
+
agno/utils/team.py,sha256=_UlknLu2BZtmauzCcr9OVNNqzcjGUnZBJII0ww1NhSo,1693
|
|
484
488
|
agno/utils/timer.py,sha256=Fuax69yh1cVIzCYMmJDB4HpTsPM8Iiq1VaTWz1vJtF8,1282
|
|
485
489
|
agno/utils/tools.py,sha256=YZjA95pSNhHHcyoz5pe-Wo-yh9O2NU4Pqcbhs5kbefY,3842
|
|
486
490
|
agno/utils/web.py,sha256=JwLKspkLcuFyA19T5tf4-Rs8BGPwTEySp531A3t0sC4,655
|
|
@@ -496,9 +500,9 @@ agno/utils/models/openai_responses.py,sha256=63f2UgDFCzrr6xQITrGtn42UUHQBcZFUUFM
|
|
|
496
500
|
agno/utils/models/schema_utils.py,sha256=L6TkraMClI471H6xYy7V81lhHR4qQloVKCN0bF4Ajw0,5047
|
|
497
501
|
agno/utils/models/watsonx.py,sha256=fe6jN0hBvOCQurqjS6_9PIwDHt-4kVod9qW236Zs6DU,1496
|
|
498
502
|
agno/utils/print_response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
499
|
-
agno/utils/print_response/agent.py,sha256=
|
|
500
|
-
agno/utils/print_response/team.py,sha256=
|
|
501
|
-
agno/utils/print_response/workflow.py,sha256=
|
|
503
|
+
agno/utils/print_response/agent.py,sha256=CcpWKVnSAsbHYcTm_QHu43j5-z8mAu7Kl_c7LGCI4bc,35888
|
|
504
|
+
agno/utils/print_response/team.py,sha256=nJ9KcwdAmj6YyUUjDYPEsRqi5hYw8ovypvkN08hwXsA,78653
|
|
505
|
+
agno/utils/print_response/workflow.py,sha256=vtwrnX9KGwTRVoDEBEfsUTvFUHJw2uquCnzfnAP4bto,72071
|
|
502
506
|
agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
|
|
503
507
|
agno/vectordb/base.py,sha256=Z5IN4kcO0privHOOI16z-G--PtjfnMrBNrsLx3umokM,3848
|
|
504
508
|
agno/vectordb/distance.py,sha256=OjpKSq57_gblZm4VGZTV7B7le45r_2-Fp1X4Hilx1M4,131
|
|
@@ -544,16 +548,16 @@ agno/vectordb/weaviate/__init__.py,sha256=FIoFJgqSmGuFgpvmsg8EjAn8FDAhuqAXed7fja
|
|
|
544
548
|
agno/vectordb/weaviate/index.py,sha256=y4XYPRZFksMfrrF85B4hn5AtmXM4SH--4CyLo27EHgM,253
|
|
545
549
|
agno/vectordb/weaviate/weaviate.py,sha256=8KNa5a-RuksE6w9poD4vi_ixUBeoB96PkzCL9DHSs5o,39406
|
|
546
550
|
agno/workflow/__init__.py,sha256=lwavZXIkgqajbSf1jMqzE7kbXBIFmk5niI_NgpVI-gA,542
|
|
547
|
-
agno/workflow/condition.py,sha256=
|
|
548
|
-
agno/workflow/loop.py,sha256=
|
|
549
|
-
agno/workflow/parallel.py,sha256=
|
|
550
|
-
agno/workflow/router.py,sha256=
|
|
551
|
-
agno/workflow/step.py,sha256=
|
|
552
|
-
agno/workflow/steps.py,sha256=
|
|
551
|
+
agno/workflow/condition.py,sha256=DzgJkuhgkWvBpK2AFteSoDK36uJDHkE7ZWCePgsmp0I,31601
|
|
552
|
+
agno/workflow/loop.py,sha256=qNaHREa_k__qJ6pyM28VJcM2Vxkfpen7ol7FCA8OoJo,32539
|
|
553
|
+
agno/workflow/parallel.py,sha256=vcepml4Ww1JXJVLnfaxGwYfv0AVkuEeBS2LWmy7lIGI,35125
|
|
554
|
+
agno/workflow/router.py,sha256=q2nuFMEAUQwVTZGncFCwlOsdOw-4nHt5QNJQgEdhv6I,29707
|
|
555
|
+
agno/workflow/step.py,sha256=gD9Nw3jYk6jsTTko3Ab0pRmMZ2ReOhcCzCgHZA7EcSc,60533
|
|
556
|
+
agno/workflow/steps.py,sha256=O3lbKw56ziSnuJndAGm8hjlEwdTh2jQXf1s0587Va3M,25671
|
|
553
557
|
agno/workflow/types.py,sha256=DutB4UkEppJoWRiNaGEnPk6xFNpg0oCBwOb7VJ8T_xE,18646
|
|
554
|
-
agno/workflow/workflow.py,sha256=
|
|
555
|
-
agno-2.
|
|
556
|
-
agno-2.
|
|
557
|
-
agno-2.
|
|
558
|
-
agno-2.
|
|
559
|
-
agno-2.
|
|
558
|
+
agno/workflow/workflow.py,sha256=uOy27YcIwbOY-N-FwrMMS6JBflvcxfByclEZC8fcBoA,142896
|
|
559
|
+
agno-2.2.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
560
|
+
agno-2.2.0.dist-info/METADATA,sha256=D4DRUYBuhP3dZm_aqFrPICOhCpZoU7gPqvvztY8B2kY,27963
|
|
561
|
+
agno-2.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
562
|
+
agno-2.2.0.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
563
|
+
agno-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|