agno 2.3.5__py3-none-any.whl → 2.3.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.
- agno/agent/agent.py +7 -4
- agno/db/postgres/async_postgres.py +14 -4
- agno/db/postgres/postgres.py +9 -3
- agno/db/sqlite/async_sqlite.py +1 -1
- agno/db/sqlite/sqlite.py +3 -4
- agno/eval/accuracy.py +8 -4
- agno/integrations/discord/client.py +1 -1
- agno/models/cerebras/cerebras.py +11 -12
- agno/os/interfaces/whatsapp/security.py +3 -1
- agno/os/schema.py +2 -1
- agno/session/team.py +0 -1
- agno/table.py +1 -1
- agno/team/team.py +7 -4
- agno/tools/google_drive.py +4 -3
- agno/tools/spotify.py +922 -0
- agno/utils/agent.py +2 -2
- agno/utils/mcp.py +1 -1
- agno/workflow/workflow.py +5 -2
- {agno-2.3.5.dist-info → agno-2.3.6.dist-info}/METADATA +37 -32
- {agno-2.3.5.dist-info → agno-2.3.6.dist-info}/RECORD +23 -22
- {agno-2.3.5.dist-info → agno-2.3.6.dist-info}/WHEEL +0 -0
- {agno-2.3.5.dist-info → agno-2.3.6.dist-info}/licenses/LICENSE +0 -0
- {agno-2.3.5.dist-info → agno-2.3.6.dist-info}/top_level.txt +0 -0
agno/utils/agent.py
CHANGED
|
@@ -843,7 +843,7 @@ def execute_instructions(
|
|
|
843
843
|
|
|
844
844
|
# Check for session_state parameter
|
|
845
845
|
if "session_state" in signature.parameters:
|
|
846
|
-
instruction_args["session_state"] = session_state
|
|
846
|
+
instruction_args["session_state"] = session_state if session_state is not None else {}
|
|
847
847
|
|
|
848
848
|
# Check for run_context parameter
|
|
849
849
|
if "run_context" in signature.parameters:
|
|
@@ -902,7 +902,7 @@ async def aexecute_instructions(
|
|
|
902
902
|
|
|
903
903
|
# Check for session_state parameter
|
|
904
904
|
if "session_state" in signature.parameters:
|
|
905
|
-
instruction_args["session_state"] = session_state
|
|
905
|
+
instruction_args["session_state"] = session_state if session_state is not None else {}
|
|
906
906
|
|
|
907
907
|
# Check for run_context parameter
|
|
908
908
|
if "run_context" in signature.parameters:
|
agno/utils/mcp.py
CHANGED
agno/workflow/workflow.py
CHANGED
|
@@ -1837,7 +1837,7 @@ class Workflow:
|
|
|
1837
1837
|
self._update_metadata(session=workflow_session)
|
|
1838
1838
|
|
|
1839
1839
|
# Update session state from DB
|
|
1840
|
-
_session_state = session_state
|
|
1840
|
+
_session_state = session_state if session_state is not None else {}
|
|
1841
1841
|
_session_state = self._load_session_state(session=workflow_session, session_state=_session_state)
|
|
1842
1842
|
|
|
1843
1843
|
return workflow_session, _session_state
|
|
@@ -3522,7 +3522,10 @@ class Workflow:
|
|
|
3522
3522
|
|
|
3523
3523
|
# Initialize session state
|
|
3524
3524
|
session_state = self._initialize_session_state(
|
|
3525
|
-
session_state=session_state
|
|
3525
|
+
session_state=session_state if session_state is not None else {},
|
|
3526
|
+
user_id=user_id,
|
|
3527
|
+
session_id=session_id,
|
|
3528
|
+
run_id=run_id,
|
|
3526
3529
|
)
|
|
3527
3530
|
# Update session state from DB
|
|
3528
3531
|
session_state = self._load_session_state(session=workflow_session, session_state=session_state)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agno
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.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
|
|
@@ -381,6 +381,7 @@ Requires-Dist: agno[agui]; extra == "tests"
|
|
|
381
381
|
Requires-Dist: agno[integration-tests]; extra == "tests"
|
|
382
382
|
Requires-Dist: twine; extra == "tests"
|
|
383
383
|
Requires-Dist: build; extra == "tests"
|
|
384
|
+
Requires-Dist: grpcio==1.74.0; extra == "tests"
|
|
384
385
|
Provides-Extra: integration-tests
|
|
385
386
|
Requires-Dist: exa_py; extra == "integration-tests"
|
|
386
387
|
Requires-Dist: ddgs; extra == "integration-tests"
|
|
@@ -411,15 +412,15 @@ Dynamic: license-file
|
|
|
411
412
|
|
|
412
413
|
## What is Agno?
|
|
413
414
|
|
|
414
|
-
Agno is
|
|
415
|
+
Agno is an incredibly fast multi-agent framework, runtime and control plane.
|
|
415
416
|
|
|
416
|
-
It provides
|
|
417
|
+
It provides the complete stack for building, running and managing multi-agent systems:
|
|
417
418
|
|
|
418
|
-
- **
|
|
419
|
-
- **
|
|
420
|
-
- **
|
|
419
|
+
- **Framework**: Build agents, multi-agent teams and workflows with memory, knowledge, state, guardrails, HITL, context compression, MCP, A2A and 100+ toolkits.
|
|
420
|
+
- **AgentOS Runtime**: Run your multi-agent system in production with a secure, stateless runtime and ready to use integration endpoints.
|
|
421
|
+
- **AgentOS Control Plane**: Test, monitor and manage AgentOS deployments across environments with full operational visibility.
|
|
421
422
|
|
|
422
|
-
|
|
423
|
+
Checkout the full list of features [here](#features).
|
|
423
424
|
|
|
424
425
|
## Getting started
|
|
425
426
|
|
|
@@ -436,7 +437,7 @@ After that, checkout the [examples gallery](https://docs.agno.com/examples/use-c
|
|
|
436
437
|
|
|
437
438
|
## Example
|
|
438
439
|
|
|
439
|
-
Here
|
|
440
|
+
Here's an example of an Agent that connects to an MCP server, manages conversation state in a database, is served using a FastAPI application that you can chat with using the [AgentOS UI](https://os.agno.com).
|
|
440
441
|
|
|
441
442
|
```python agno_agent.py
|
|
442
443
|
from agno.agent import Agent
|
|
@@ -471,21 +472,21 @@ if __name__ == "__main__":
|
|
|
471
472
|
|
|
472
473
|
## AgentOS - Production Runtime for Multi-Agent Systems
|
|
473
474
|
|
|
474
|
-
Building Agents is easy, running them
|
|
475
|
+
Building Agents is easy, running them as a secure, scalable service is hard. AgentOS solves this by providing a high performance runtime for serving multi-agent systems in production. Key features include:
|
|
475
476
|
|
|
476
|
-
1. **Pre-built FastAPI app**: AgentOS
|
|
477
|
+
1. **Pre-built FastAPI app**: AgentOS includes a ready-to-use FastAPI app for running your agents, teams and workflows. This gives you a significant head start when building an AI product.
|
|
477
478
|
|
|
478
|
-
2. **Integrated Control Plane**: The [AgentOS UI](https://os.agno.com) connects directly to your runtime,
|
|
479
|
+
2. **Integrated Control Plane**: The [AgentOS UI](https://os.agno.com) connects directly to your runtime, so you can test, monitor and manage your system in real time with full operational visibility.
|
|
479
480
|
|
|
480
|
-
3. **Private by Design**: AgentOS runs entirely in your cloud, ensuring complete data privacy. No data
|
|
481
|
+
3. **Private by Design**: AgentOS runs entirely in your cloud, ensuring complete data privacy. No data leaves your environment, making it ideal for security conscious enterprises..
|
|
481
482
|
|
|
482
|
-
|
|
483
|
+
When you run the example script shared above, you get a FastAPI app that you can connect to the [AgentOS UI](https://os.agno.com). Here's what it looks like in action:
|
|
483
484
|
|
|
484
485
|
https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
|
|
485
486
|
|
|
486
487
|
## The Complete Agentic Solution
|
|
487
488
|
|
|
488
|
-
|
|
489
|
+
Agno provides the complete solution for companies building agentic systems:
|
|
489
490
|
|
|
490
491
|
- The fastest framework for building agents, multi-agent teams and agentic workflows.
|
|
491
492
|
- A ready-to-use FastAPI app that gets you building AI products on day one.
|
|
@@ -493,28 +494,32 @@ For companies building agents, Agno provides the complete agentic solution:
|
|
|
493
494
|
|
|
494
495
|
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.
|
|
495
496
|
|
|
496
|
-
##
|
|
497
|
+
## Features
|
|
497
498
|
|
|
498
|
-
Agno is an incredibly feature-rich framework
|
|
499
|
+
Agno is an incredibly feature-rich framework purpose-built for Agent Engineering. Here are some key features:
|
|
499
500
|
|
|
500
501
|
| **Category** | **Feature** | **Description** |
|
|
501
502
|
| -------------------------------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
502
|
-
| **
|
|
503
|
-
| | **Type Safe** |
|
|
504
|
-
| | **Dynamic Context
|
|
505
|
-
| **
|
|
506
|
-
|
|
|
507
|
-
| | **
|
|
508
|
-
| | **
|
|
509
|
-
| **
|
|
503
|
+
| **Foundational Principles** | **Model Agnostic** | Supports all model providers so you can choose the best model for your use case |
|
|
504
|
+
| | **Type Safe** | Enforces structured I/O through input_schema and output_schema for predictable and composable agent behavior. |
|
|
505
|
+
| | **Dynamic Context** | Inject variables, state, and retrieved data at runtime into context. Compress, summarize and filter context to keep your Agents focused and efficient. |
|
|
506
|
+
| | **Designed for Scale** | Designed around async execution and long-running tasks for high throughput agent workloads. |
|
|
507
|
+
| **Memory, Knowledge, and Persistence** | **Persistent Storage** | Give your Agents, Teams, and Workflows a database to persist session history, state, and messages. |
|
|
508
|
+
| | **User Memory** | Built in memory layer that helps agents recall user specific context across sessions. |
|
|
509
|
+
| | **Agentic RAG** | Connect to 20+ vector stores (called **Knowledge**) with hybrid search, reranking, and chunking out of the box. |
|
|
510
|
+
| | **Culture** | Shared long term collective memory that compounds across agents and time. |
|
|
511
|
+
| | **Ephemeral Context** | In memory scratchpad for short lived reasoning without polluting long term state. |
|
|
512
|
+
| **Execution & Control** | **Human-in-the-Loop** | Native support for confirmations, approvals, manual overrides, and external actions. |
|
|
510
513
|
| | **Guardrails** | Built-in safeguards for validation, security, and prompt protection. |
|
|
511
|
-
| | **Agent Lifecycle Hooks** | Pre
|
|
512
|
-
| | **MCP Integration** | First-class support for the Model Context Protocol (MCP) to connect Agents with external systems.
|
|
513
|
-
| | **
|
|
514
|
-
|
|
|
515
|
-
|
|
|
516
|
-
| | **
|
|
517
|
-
| | **
|
|
514
|
+
| | **Agent Lifecycle Hooks** | Pre and post hooks to validate, enrich, or transform inputs and outputs. |
|
|
515
|
+
| | **MCP Integration** | First-class support for the Model Context Protocol (MCP) to connect Agents with external systems. |
|
|
516
|
+
| | **A2A Integration** | First-class support for the Agent to Agent communication protocol (A2A). |
|
|
517
|
+
| | **Toolkits** | 100+ built in toolkits with thousands of tools covering data, code, web, and enterprise APIs. |
|
|
518
|
+
| **Runtime & Evaluation** | **Runtime** | Prebuilt FastAPI runtime with SSE compatible endpoints. Production ready from day one. |
|
|
519
|
+
| | **Control Plane (UI)** | Integrated interface to test, observe, and debug your agents, teams, and workflows in real time. |
|
|
520
|
+
| | **Natively Multimodal** | Agents can process and generate text, images, audio, video, and files. |
|
|
521
|
+
| | **Evals** | Measure Accuracy, Performance, Latency, and Reliability across agents and workflows. |
|
|
522
|
+
| | **Durable Execution** | Built in support for long running, resumable workflows. |
|
|
518
523
|
| **Security & Privacy** | **Private by Design** | Runs entirely in your cloud. The UI connects directly to your AgentOS from your browser, no data is ever sent externally. |
|
|
519
524
|
| | **Data Governance** | Your data lives securely in your Agent database, no external data sharing or vendor lock-in. |
|
|
520
525
|
| | **Access Control** | Role-based access (RBAC) and per-agent permissions to protect sensitive contexts and tools. |
|
|
@@ -544,7 +549,7 @@ At Agno, we optimize performance across 3 dimensions:
|
|
|
544
549
|
|
|
545
550
|
1. **Agent performance:** We optimize static operations (instantiation, memory footprint) and runtime operations (tool calls, memory updates, history management).
|
|
546
551
|
2. **System performance:** The AgentOS API is async by default and has a minimal memory footprint. The system is stateless and horizontally scalable, with a focus on preventing memory leaks. It handles parallel and batch embedding generation during knowledge ingestion, metrics collection in background tasks, and other system-level optimizations.
|
|
547
|
-
3. **Agent reliability and accuracy:** Monitored through evals, which we
|
|
552
|
+
3. **Agent reliability and accuracy:** Monitored through evals, which we'll explore later.
|
|
548
553
|
|
|
549
554
|
### Agent Performance
|
|
550
555
|
|
|
@@ -4,9 +4,9 @@ agno/exceptions.py,sha256=-1VdjOTArJgMO5uqoEQ2CNL2k6ICrHWSiukznsI6S78,5361
|
|
|
4
4
|
agno/filters.py,sha256=QxBjNUUS53o1zkG-J0F8XjDzlu0ADtJn3r6rfkGZ9Fk,12079
|
|
5
5
|
agno/media.py,sha256=eTfYb_pwhX_PCIVPSrW4VYRqmoxKABEF1aZClrVvQ30,16500
|
|
6
6
|
agno/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
agno/table.py,sha256=
|
|
7
|
+
agno/table.py,sha256=9hHFnInNsrj0ZKtWjGDP5c6kbmNdtQvDDYT2j2CZJ6o,198
|
|
8
8
|
agno/agent/__init__.py,sha256=s7S3FgsjZxuaabzi8L5n4aSH8IZAiZ7XaNNcySGR-EQ,1051
|
|
9
|
-
agno/agent/agent.py,sha256=
|
|
9
|
+
agno/agent/agent.py,sha256=kEy31Yl3tlnwwf22FsY7jhMqoHdDQOnj3-V79Jb30v0,487893
|
|
10
10
|
agno/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
agno/api/agent.py,sha256=fKlQ62E_C9Rjd7Zus3Gs3R1RG-IhzFV-ICpkb6SLqYc,932
|
|
12
12
|
agno/api/api.py,sha256=gFhVjxJYkQsw8mBl2fhoStMPGlyJ37DJaqgUOwZVvQI,1021
|
|
@@ -69,8 +69,8 @@ agno/db/mysql/mysql.py,sha256=Ve4ojP3slr_qMxXQ0hi4XDQPtOtgm2jBR4CEg5ao6j8,121370
|
|
|
69
69
|
agno/db/mysql/schemas.py,sha256=_4p2IWt0zVq-fHuxFhEpWLWxlp3QPKk8xtNMiB1TNOY,9067
|
|
70
70
|
agno/db/mysql/utils.py,sha256=PdqN-SxM-ox8HU9CZyxzvs2D1FE2vdZFVCyFgFcQsyU,12366
|
|
71
71
|
agno/db/postgres/__init__.py,sha256=Ojk00nTCzQFiH2ViD7KIBjgpkTKLRNPCwWnuXMKtNXY,154
|
|
72
|
-
agno/db/postgres/async_postgres.py,sha256=
|
|
73
|
-
agno/db/postgres/postgres.py,sha256=
|
|
72
|
+
agno/db/postgres/async_postgres.py,sha256=tpiqala1ZYRLcD2YTnfQAr6ivbhyito2IChiG5A6CSs,106541
|
|
73
|
+
agno/db/postgres/postgres.py,sha256=ouC5XrcGL95R30OEEjfdtMIb7jdJTjS_l6xzf1kS2cw,118023
|
|
74
74
|
agno/db/postgres/schemas.py,sha256=G0BRG9GcUcO43-TU52nKSEog8v3tdJNwIhEjts9dCns,8405
|
|
75
75
|
agno/db/postgres/utils.py,sha256=UE3UQZ-h7fADAKBsX4BWcDka54YNROEpBrlfTmDvpqc,15471
|
|
76
76
|
agno/db/redis/__init__.py,sha256=rZWeZ4CpVeKP-enVQ-SRoJ777i0rdGNgoNDRS9gsfAc,63
|
|
@@ -88,9 +88,9 @@ agno/db/singlestore/schemas.py,sha256=gnCpoRAztbPiZOCfx9MGBx1sySijwogajSjxIeGpsa
|
|
|
88
88
|
agno/db/singlestore/singlestore.py,sha256=Q0MhS41gCm4xgtoHuLQjvUEHJYurqtlJD7aP5_46rx0,118882
|
|
89
89
|
agno/db/singlestore/utils.py,sha256=w2FVFIBpFJK6nKJVt1sgv9N-esmfpGY_8ViFRI69I2I,13677
|
|
90
90
|
agno/db/sqlite/__init__.py,sha256=09V3i4y0-tBjt60--57ivZ__SaaS67GCsDT4Apzv-5Y,138
|
|
91
|
-
agno/db/sqlite/async_sqlite.py,sha256=
|
|
91
|
+
agno/db/sqlite/async_sqlite.py,sha256=Amv3zha6FTHCuwAuYUzw0jGoIbNC5s6sv6QTJoMRPEw,123366
|
|
92
92
|
agno/db/sqlite/schemas.py,sha256=1lrIFWEhXYZJIlQYEnOl3XLp3UfsE5ILj2HUPmOf3cg,8265
|
|
93
|
-
agno/db/sqlite/sqlite.py,sha256=
|
|
93
|
+
agno/db/sqlite/sqlite.py,sha256=3jiDLjs1vM3sTd6526v4JJhrpjL6cMaW9Xik0nTA57k,120340
|
|
94
94
|
agno/db/sqlite/utils.py,sha256=sgp-KR7A5naTqTORHYHyP_21hG9LffOzCgqbx5S8RfE,15171
|
|
95
95
|
agno/db/surrealdb/__init__.py,sha256=C8qp5-Nx9YnSmgKEtGua-sqG_ntCXONBw1qqnNyKPqI,75
|
|
96
96
|
agno/db/surrealdb/metrics.py,sha256=oKDRyjRQ6KR3HaO8zDHQLVMG7-0NDkOFOKX5I7mD5FA,10336
|
|
@@ -99,7 +99,7 @@ agno/db/surrealdb/queries.py,sha256=s__yJSFIx387IEflcDdti7T5j6H9NX_-zIj13F9CN9s,
|
|
|
99
99
|
agno/db/surrealdb/surrealdb.py,sha256=6ldAHl-FFlL-wOJMcaoPqM1VCfg65hT8cJftiT0nEmc,75011
|
|
100
100
|
agno/db/surrealdb/utils.py,sha256=PcZo_cTy-jI59I-XhzAomRLdV9-m0irtO4C-AYGSghs,5405
|
|
101
101
|
agno/eval/__init__.py,sha256=vCYcIbfOkT2lL8vZJ9zsea6j3byp5A-mxEb_45VaD8I,449
|
|
102
|
-
agno/eval/accuracy.py,sha256=
|
|
102
|
+
agno/eval/accuracy.py,sha256=x6axWHcBRXazuwKFKcCFVFMYgLbJcgTLAxv6WoiPv3w,33551
|
|
103
103
|
agno/eval/performance.py,sha256=9FLilFKrq_auCboE_xBG42V-_IPPpm8zEvqswZ83Pm0,30764
|
|
104
104
|
agno/eval/reliability.py,sha256=2PAIO8g-9ukqMg_iazorFY1uxzu9gk6eFPBPFE3NC4A,12873
|
|
105
105
|
agno/eval/utils.py,sha256=uu7ssj9kjO02m0R61ty3Zqwz4JXHt4tOPySPBhnMqjM,3869
|
|
@@ -112,7 +112,7 @@ agno/hooks/__init__.py,sha256=AZnexNDnt3IlLDzPAWAYykH_jybXO9eFuXSuwIQT04s,112
|
|
|
112
112
|
agno/hooks/decorator.py,sha256=IWqTRM3IYfIjLsmFGRqUpHuArjQf0457l3viDZ5GJBU,5399
|
|
113
113
|
agno/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
114
|
agno/integrations/discord/__init__.py,sha256=MS08QSnegGgpDZd9LyLjK4pWIk9dXlbzgD7wB3eEVJE,88
|
|
115
|
-
agno/integrations/discord/client.py,sha256=
|
|
115
|
+
agno/integrations/discord/client.py,sha256=Yz4yWYv2-6MYM9cS5yrHHLEQx32hDY0o2lhP5V4SZsg,8387
|
|
116
116
|
agno/knowledge/__init__.py,sha256=PJCt-AGKGFztzR--Ok2TNKW5QEqllZzqiI_7f8-1u80,79
|
|
117
117
|
agno/knowledge/content.py,sha256=q2bjcjDhfge_UrQAcygrv5R9ZTk7vozzKnQpatDQWRo,2295
|
|
118
118
|
agno/knowledge/knowledge.py,sha256=CJG5RiXbnA_iFcP31UU6LqUMJluPqpsYOLJuI35mMU4,80377
|
|
@@ -198,7 +198,7 @@ agno/models/azure/__init__.py,sha256=EoFdJHjayvmv_VOmaW9cJguwA1K5OFS_nFeazyn0B2w
|
|
|
198
198
|
agno/models/azure/ai_foundry.py,sha256=VMIci3geZ5KGq-ua7k0eHH33gBFOWbJWamEsxtmiaqg,19915
|
|
199
199
|
agno/models/azure/openai_chat.py,sha256=knuJZMX7BMe15S1Dw6NBPEZy43avvtruy7jX1Q7qPX8,5734
|
|
200
200
|
agno/models/cerebras/__init__.py,sha256=F3vE0lmMu-qDQ_Y7hg_czJitLsvNu4SfPv174wg1cq8,376
|
|
201
|
-
agno/models/cerebras/cerebras.py,sha256=
|
|
201
|
+
agno/models/cerebras/cerebras.py,sha256=ZXYJrsO84bEf6buOtY8iYrI4jGg3_SYkBFHs3H-SBy0,21695
|
|
202
202
|
agno/models/cerebras/cerebras_openai.py,sha256=ut4_xz6gKWKA-kJZCWjpk0RuCrvLe0YDrzofxh9E7_U,4907
|
|
203
203
|
agno/models/cohere/__init__.py,sha256=4kFUnfPEL3__hd1TRW7fZxh7D_DctcpY5QDV58lR6s0,72
|
|
204
204
|
agno/models/cohere/chat.py,sha256=8-W2a_d4DI7dYL9D2FSeab5hsD2GgNXh5-5C1XJ28ME,16911
|
|
@@ -276,7 +276,7 @@ agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
|
|
|
276
276
|
agno/os/config.py,sha256=oAqtvrNl445zGJmhz6BSOQE6HM_uvKk-K4ms6-my6nk,3285
|
|
277
277
|
agno/os/mcp.py,sha256=LrCZ6xQ6RAJfnxHYGgHQStanWN4u2bjzcxHjD_cZxBk,10362
|
|
278
278
|
agno/os/router.py,sha256=_SLNxtKZnlhvd-Sn7aQv12ZtKVXLKI0BgOMyFLNYI70,77680
|
|
279
|
-
agno/os/schema.py,sha256=
|
|
279
|
+
agno/os/schema.py,sha256=V4vMkWyetUrd2Du8gMeQP_Q2dVbfYgGDfzaBPqB0DQA,54441
|
|
280
280
|
agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
|
|
281
281
|
agno/os/utils.py,sha256=Il5ci2EDG0wZAgTnGmG64t050eBP7ghqeuKYcRI4ve8,30146
|
|
282
282
|
agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -295,7 +295,7 @@ agno/os/interfaces/slack/security.py,sha256=nMbW_0g-G_DEMbCQOD8C3PYrRPIpB2cyM6P-
|
|
|
295
295
|
agno/os/interfaces/slack/slack.py,sha256=XEbL1WjOtFIDS1Rn1oclZ6vzCLlE7ouXeg1uYSVDW38,1382
|
|
296
296
|
agno/os/interfaces/whatsapp/__init__.py,sha256=-sD2W00qj8hrx72ATVMtaDc7GfAsaCQJMlnRjYPwisg,82
|
|
297
297
|
agno/os/interfaces/whatsapp/router.py,sha256=K7Ex4Xq-4hPcRKoVxBkb8KoGxH6WXC1bubd5iTkHZZQ,9734
|
|
298
|
-
agno/os/interfaces/whatsapp/security.py,sha256=
|
|
298
|
+
agno/os/interfaces/whatsapp/security.py,sha256=0GYdG28yeSpV47nMWASaFSTiGESSstcFAeL6amobvFE,1772
|
|
299
299
|
agno/os/interfaces/whatsapp/whatsapp.py,sha256=tNJncEu_hm0lFOHbjaSoz5-VIKORR_pyW26cseBLfbs,989
|
|
300
300
|
agno/os/middleware/__init__.py,sha256=EYsNzeixFgL3n8kepKWXT42fTTmrNyD8b8rOdXecMRI,94
|
|
301
301
|
agno/os/middleware/jwt.py,sha256=xw9jQkVFMTTzUVird1k-egAYBmPd174L06YflYCvB5Q,9468
|
|
@@ -342,10 +342,10 @@ agno/run/workflow.py,sha256=cHH_ArV_Wws__8ug9Dwy3OVu7G2ND_K9E1PNdzk7CZo,25100
|
|
|
342
342
|
agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
|
|
343
343
|
agno/session/agent.py,sha256=8vVtwwUC5moGWdRcG99Ik6Ay7gbFRrPPnT1ncOUFQIg,10365
|
|
344
344
|
agno/session/summary.py,sha256=9JnDyQyggckd3zx6L8Q5f-lglZvrFQxvPjGU8gLCgR4,10292
|
|
345
|
-
agno/session/team.py,sha256
|
|
345
|
+
agno/session/team.py,sha256=-MkB6qQCrnXLKko8L5s9fJOWPsjeK5Gx0SXEPoOwSFQ,13437
|
|
346
346
|
agno/session/workflow.py,sha256=nPHnh1N0SJby5JRjysCUI-kTDCelQMFfqosEnnLzPIg,19690
|
|
347
347
|
agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
|
|
348
|
-
agno/team/team.py,sha256=
|
|
348
|
+
agno/team/team.py,sha256=hFYsNkj1ZLp7wSKSh0MXYFP8nFn0iDQEtslAw4UQe8w,430908
|
|
349
349
|
agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
|
|
350
350
|
agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
|
|
351
351
|
agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
|
|
@@ -390,7 +390,7 @@ agno/tools/giphy.py,sha256=_wOCWVnMdFByE9Yoz4Pf2MoKxSjkUTiPJZ928_BNe2M,3070
|
|
|
390
390
|
agno/tools/github.py,sha256=wct6P00YzF3zgWoV2c5aHeXX_2dgb9LqRwJAboi6QXw,70286
|
|
391
391
|
agno/tools/gmail.py,sha256=m_7SY4oz2sP0RSJyNItZ_h5VeyI86J8840_p5Nz_2So,37073
|
|
392
392
|
agno/tools/google_bigquery.py,sha256=j0c14CgGK8KvD7eEirsdAx7RSwcfMheugn84ySq6miU,4483
|
|
393
|
-
agno/tools/google_drive.py,sha256=
|
|
393
|
+
agno/tools/google_drive.py,sha256=vAjIN1WiWBWN9y5hNPVA3MRJuOQcXfWfqzofEe-Pf7Y,11208
|
|
394
394
|
agno/tools/google_maps.py,sha256=AqPEIt4u6B2kQtzOnL5PH3RXoefCfjT_Uvm3coAqzaY,9513
|
|
395
395
|
agno/tools/googlecalendar.py,sha256=4WxmPIaxxsxAYP56XT7ehnmKEwicn9w_KOe8LMy5KB0,28670
|
|
396
396
|
agno/tools/googlesheets.py,sha256=m8K0A8I5d68HG19OajDLCgGJzXnsnh33OQQOc6K5Qbg,15704
|
|
@@ -436,6 +436,7 @@ agno/tools/shell.py,sha256=1cQVdrJI6oWzDY6H50ISFfzvnK7p6uH3FqRa4HXbM_U,1764
|
|
|
436
436
|
agno/tools/slack.py,sha256=AmRV0wAqzNAL_DmOVNrHeZdw8bn9KJ1INrZ6qm40pn8,5413
|
|
437
437
|
agno/tools/sleep.py,sha256=EfHhODf4Z1XnAppS_2-rb6vRGmFJEIG0RtS8t4cG-SE,632
|
|
438
438
|
agno/tools/spider.py,sha256=wgtIxg13QSUA2GOIS_dD3yFNfXA_SOUBc7Fk_flas8M,4461
|
|
439
|
+
agno/tools/spotify.py,sha256=MWwJv-zwL-97xEyO8qHGg7cw4R__aBwRExKmVoWnYww,31237
|
|
439
440
|
agno/tools/sql.py,sha256=HagMFqYUTWMSVKYKcaQ6Mqz16zpCugNypYOOuRS-pUY,5438
|
|
440
441
|
agno/tools/tavily.py,sha256=1habkgXXHU8oStWmoZ29DVRBtl-tO-Pss1o9N1MovIU,10464
|
|
441
442
|
agno/tools/telegram.py,sha256=e78EJlh44EmJNnv3FHyxW-sl72GjFYHpF6aGrCjNijc,1523
|
|
@@ -478,7 +479,7 @@ agno/tracing/exporter.py,sha256=0hQd78aCLluzmPx57IxDT5B67KMzDRj4mRxxVLimsSI,5706
|
|
|
478
479
|
agno/tracing/schemas.py,sha256=3jPAMKsY_waX1W8elkq7plkkExGK2P6SbtZlxqIsDfc,10213
|
|
479
480
|
agno/tracing/setup.py,sha256=J-nmeTvqwfrJ028jC6Yd5r073IoHhBV09SZ6Ut2dQsk,3914
|
|
480
481
|
agno/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
|
-
agno/utils/agent.py,sha256=
|
|
482
|
+
agno/utils/agent.py,sha256=oAfpOB35oEkI2vGMoJriUbyhe-5fMO17BA456MWG_mw,36306
|
|
482
483
|
agno/utils/audio.py,sha256=kdPMr_wYh-NyxQ-U57hyulK0Y7iIkuVinL9AQ7w64EU,1455
|
|
483
484
|
agno/utils/certs.py,sha256=Dtqmcwngq6b-27gN7Zsmo9lKlMPYd70UNexLMqpX3BE,683
|
|
484
485
|
agno/utils/code_execution.py,sha256=JAzcsuUJVO8ZVcD9AgX_O9waBegjhbrHkQZp-YZGsdA,415
|
|
@@ -496,7 +497,7 @@ agno/utils/json_schema.py,sha256=VPbK-Gdo0qOQKco7MZnv1d2Fe-9mt1PRBO1SNFIvBHY,855
|
|
|
496
497
|
agno/utils/knowledge.py,sha256=QPLcBfJ22XNG2w_qUYRaD5PiDQEgf-ITYb9n85m27pA,1502
|
|
497
498
|
agno/utils/location.py,sha256=VhXIwSWdr7L4DEJoUeVI92Y-rJ32NUcYzFRnzLgX-es,658
|
|
498
499
|
agno/utils/log.py,sha256=NJ56KY2rYn0wfiD1y_VTCz8KrvnrkcXi7kQoKZoULV8,7792
|
|
499
|
-
agno/utils/mcp.py,sha256=
|
|
500
|
+
agno/utils/mcp.py,sha256=j3S6lYeuWiLLhPYDxPsK_ZwSJ2TaEMboyXckbqlUdeM,7615
|
|
500
501
|
agno/utils/media.py,sha256=Mkt-DxFmAnypeZOU84fMLmGSd2aXbw7z7OgF0pKA4yc,12456
|
|
501
502
|
agno/utils/merge_dict.py,sha256=K_dZdwi46gjDFn7wgqZ9_fycRIZGJCnUxFVKCrQ6PYc,1490
|
|
502
503
|
agno/utils/message.py,sha256=jIcSe79WmfpbbYowy0C57ZzRBd9ENj-hyj3TQw_9vsg,4684
|
|
@@ -587,9 +588,9 @@ agno/workflow/router.py,sha256=HQDOnErjtiQdY_EskJBV_mZq_k6d1gH6JJPIM2Yfelw,32016
|
|
|
587
588
|
agno/workflow/step.py,sha256=2BAZQI9nNs-qR0_r1I4WSuIB_sOXI7Q-OeQtb-bzSXU,74268
|
|
588
589
|
agno/workflow/steps.py,sha256=rbfue2M4qYEkgHueojCY1-cB4i1MFjO-jX6uTxyoKwk,27118
|
|
589
590
|
agno/workflow/types.py,sha256=LObJ0VkUtepZ-uewv3j283S4hrCXy0eCplQzIzRG1ic,19175
|
|
590
|
-
agno/workflow/workflow.py,sha256=
|
|
591
|
-
agno-2.3.
|
|
592
|
-
agno-2.3.
|
|
593
|
-
agno-2.3.
|
|
594
|
-
agno-2.3.
|
|
595
|
-
agno-2.3.
|
|
591
|
+
agno/workflow/workflow.py,sha256=6khBK6tbO9i2aSovduwNoQUfbcyEdoKyF4F86Uyj4gM,193181
|
|
592
|
+
agno-2.3.6.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
593
|
+
agno-2.3.6.dist-info/METADATA,sha256=gIJVEqmYGSNOqNGuDCgtPzy6kGq8l4fTDr1dnoemx-c,30890
|
|
594
|
+
agno-2.3.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
595
|
+
agno-2.3.6.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
596
|
+
agno-2.3.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|