agno 2.1.4__py3-none-any.whl → 2.1.5__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 +1767 -535
- agno/db/async_postgres/__init__.py +3 -0
- agno/db/async_postgres/async_postgres.py +1668 -0
- agno/db/async_postgres/schemas.py +124 -0
- agno/db/async_postgres/utils.py +289 -0
- agno/db/base.py +237 -2
- agno/db/dynamo/dynamo.py +2 -2
- agno/db/firestore/firestore.py +2 -2
- agno/db/firestore/utils.py +4 -2
- agno/db/gcs_json/gcs_json_db.py +2 -2
- agno/db/in_memory/in_memory_db.py +2 -2
- agno/db/json/json_db.py +2 -2
- agno/db/migrations/v1_to_v2.py +30 -13
- agno/db/mongo/mongo.py +18 -6
- agno/db/mysql/mysql.py +35 -13
- agno/db/postgres/postgres.py +29 -6
- agno/db/redis/redis.py +2 -2
- agno/db/singlestore/singlestore.py +2 -2
- agno/db/sqlite/sqlite.py +34 -12
- agno/db/sqlite/utils.py +8 -3
- agno/eval/accuracy.py +50 -43
- agno/eval/performance.py +6 -3
- agno/eval/reliability.py +6 -3
- agno/eval/utils.py +33 -16
- agno/exceptions.py +8 -2
- agno/knowledge/knowledge.py +260 -46
- agno/knowledge/reader/pdf_reader.py +4 -6
- agno/knowledge/reader/reader_factory.py +2 -3
- agno/memory/manager.py +241 -33
- agno/models/anthropic/claude.py +37 -0
- agno/os/app.py +8 -7
- agno/os/interfaces/a2a/router.py +3 -5
- agno/os/interfaces/agui/router.py +4 -1
- agno/os/interfaces/agui/utils.py +27 -6
- agno/os/interfaces/slack/router.py +2 -4
- agno/os/mcp.py +98 -41
- agno/os/router.py +23 -0
- agno/os/routers/evals/evals.py +52 -20
- agno/os/routers/evals/utils.py +14 -14
- agno/os/routers/knowledge/knowledge.py +130 -9
- agno/os/routers/knowledge/schemas.py +57 -0
- agno/os/routers/memory/memory.py +116 -44
- agno/os/routers/metrics/metrics.py +16 -6
- agno/os/routers/session/session.py +65 -22
- agno/os/schema.py +36 -0
- agno/os/utils.py +67 -12
- agno/reasoning/anthropic.py +80 -0
- agno/reasoning/gemini.py +73 -0
- agno/reasoning/openai.py +5 -0
- agno/reasoning/vertexai.py +76 -0
- agno/session/workflow.py +3 -3
- agno/team/team.py +918 -175
- agno/tools/googlesheets.py +20 -5
- agno/tools/mcp_toolbox.py +3 -3
- agno/tools/scrapegraph.py +1 -1
- agno/utils/models/claude.py +3 -1
- agno/utils/streamlit.py +1 -1
- agno/vectordb/base.py +22 -1
- agno/vectordb/cassandra/cassandra.py +9 -0
- agno/vectordb/chroma/chromadb.py +26 -6
- agno/vectordb/clickhouse/clickhousedb.py +9 -1
- agno/vectordb/couchbase/couchbase.py +11 -0
- agno/vectordb/lancedb/lance_db.py +20 -0
- agno/vectordb/langchaindb/langchaindb.py +11 -0
- agno/vectordb/lightrag/lightrag.py +9 -0
- agno/vectordb/llamaindex/llamaindexdb.py +15 -1
- agno/vectordb/milvus/milvus.py +23 -0
- agno/vectordb/mongodb/mongodb.py +22 -0
- agno/vectordb/pgvector/pgvector.py +19 -0
- agno/vectordb/pineconedb/pineconedb.py +35 -4
- agno/vectordb/qdrant/qdrant.py +24 -0
- agno/vectordb/singlestore/singlestore.py +25 -17
- agno/vectordb/surrealdb/surrealdb.py +18 -1
- agno/vectordb/upstashdb/upstashdb.py +26 -1
- agno/vectordb/weaviate/weaviate.py +18 -0
- agno/workflow/condition.py +4 -0
- agno/workflow/loop.py +4 -0
- agno/workflow/parallel.py +4 -0
- agno/workflow/router.py +4 -0
- agno/workflow/step.py +22 -14
- agno/workflow/steps.py +4 -0
- agno/workflow/types.py +2 -2
- agno/workflow/workflow.py +328 -61
- {agno-2.1.4.dist-info → agno-2.1.5.dist-info}/METADATA +100 -41
- {agno-2.1.4.dist-info → agno-2.1.5.dist-info}/RECORD +88 -81
- {agno-2.1.4.dist-info → agno-2.1.5.dist-info}/WHEEL +0 -0
- {agno-2.1.4.dist-info → agno-2.1.5.dist-info}/licenses/LICENSE +0 -0
- {agno-2.1.4.dist-info → agno-2.1.5.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.
|
|
3
|
+
Version: 2.1.5
|
|
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
|
|
@@ -191,6 +191,8 @@ Provides-Extra: sql
|
|
|
191
191
|
Requires-Dist: sqlalchemy; extra == "sql"
|
|
192
192
|
Provides-Extra: postgres
|
|
193
193
|
Requires-Dist: psycopg-binary; extra == "postgres"
|
|
194
|
+
Provides-Extra: async-postgres
|
|
195
|
+
Requires-Dist: asyncpg; extra == "async-postgres"
|
|
194
196
|
Provides-Extra: sqlite
|
|
195
197
|
Requires-Dist: sqlalchemy; extra == "sqlite"
|
|
196
198
|
Provides-Extra: gcs
|
|
@@ -320,6 +322,7 @@ Requires-Dist: agno[neo4j]; extra == "tools"
|
|
|
320
322
|
Provides-Extra: storage
|
|
321
323
|
Requires-Dist: agno[sql]; extra == "storage"
|
|
322
324
|
Requires-Dist: agno[postgres]; extra == "storage"
|
|
325
|
+
Requires-Dist: agno[async_postgres]; extra == "storage"
|
|
323
326
|
Requires-Dist: agno[sqlite]; extra == "storage"
|
|
324
327
|
Requires-Dist: agno[gcs]; extra == "storage"
|
|
325
328
|
Requires-Dist: agno[firestore]; extra == "storage"
|
|
@@ -364,7 +367,7 @@ Requires-Dist: build; extra == "tests"
|
|
|
364
367
|
Dynamic: license-file
|
|
365
368
|
|
|
366
369
|
<div align="center" id="top">
|
|
367
|
-
<a href="https://
|
|
370
|
+
<a href="https://agno.com">
|
|
368
371
|
<picture>
|
|
369
372
|
<source media="(prefers-color-scheme: dark)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-dark.svg">
|
|
370
373
|
<source media="(prefers-color-scheme: light)" srcset="https://agno-public.s3.us-east-1.amazonaws.com/assets/logo-light.svg">
|
|
@@ -372,43 +375,78 @@ Dynamic: license-file
|
|
|
372
375
|
</picture>
|
|
373
376
|
</a>
|
|
374
377
|
</div>
|
|
378
|
+
|
|
375
379
|
<div align="center">
|
|
376
|
-
<a href="https://docs.agno.com"
|
|
377
|
-
<
|
|
378
|
-
<a href="https://
|
|
379
|
-
<
|
|
380
|
+
<a href="https://docs.agno.com">Documentation</a>
|
|
381
|
+
<span> • </span>
|
|
382
|
+
<a href="https://docs.agno.com/examples/introduction">Examples</a>
|
|
383
|
+
<span> • </span>
|
|
384
|
+
<a href="https://www.agno.com/?utm_source=github&utm_medium=readme&utm_campaign=agno-github">Website</a>
|
|
385
|
+
<br />
|
|
380
386
|
</div>
|
|
381
387
|
|
|
382
388
|
## What is Agno?
|
|
383
389
|
|
|
384
|
-
|
|
390
|
+
Agno is the multi-agent framework, runtime and UI built for speed.
|
|
385
391
|
|
|
386
|
-
|
|
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).
|
|
387
393
|
|
|
388
|
-
|
|
394
|
+
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).
|
|
389
395
|
|
|
390
|
-
```python
|
|
396
|
+
```python agno_agent.py
|
|
391
397
|
from agno.agent import Agent
|
|
398
|
+
from agno.db.sqlite import SqliteDb
|
|
392
399
|
from agno.models.anthropic import Claude
|
|
393
|
-
from agno.
|
|
400
|
+
from agno.os import AgentOS
|
|
401
|
+
from agno.tools.mcp import MCPTools
|
|
394
402
|
|
|
395
|
-
|
|
403
|
+
# ************* Create Agent *************
|
|
404
|
+
agno_agent = Agent(
|
|
405
|
+
name="Agno Agent",
|
|
396
406
|
model=Claude(id="claude-sonnet-4-5"),
|
|
397
|
-
|
|
407
|
+
# Add a database to the Agent
|
|
408
|
+
db=SqliteDb(db_file="agno.db"),
|
|
409
|
+
# Add the Agno MCP server to the Agent
|
|
410
|
+
tools=[MCPTools(transport="streamable-http", url="https://docs.agno.com/mcp")],
|
|
411
|
+
# Add the previous session history to the context
|
|
412
|
+
add_history_to_context=True,
|
|
398
413
|
markdown=True,
|
|
399
414
|
)
|
|
400
|
-
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
# ************* Create AgentOS *************
|
|
418
|
+
agent_os = AgentOS(agents=[agno_agent])
|
|
419
|
+
# Get the FastAPI app for the AgentOS
|
|
420
|
+
app = agent_os.get_app()
|
|
421
|
+
|
|
422
|
+
# ************* Run AgentOS *************
|
|
423
|
+
if __name__ == "__main__":
|
|
424
|
+
agent_os.serve(app="agno_agent:app", reload=True)
|
|
401
425
|
```
|
|
402
426
|
|
|
403
|
-
|
|
427
|
+
## What is the AgentOS?
|
|
428
|
+
|
|
429
|
+
AgentOS is a high-performance runtime for multi-agent systems. Key features include:
|
|
430
|
+
|
|
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.
|
|
432
|
+
|
|
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.
|
|
434
|
+
|
|
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.
|
|
436
|
+
|
|
437
|
+
Here's what the [AgentOS UI](https://os.agno.com) looks like:
|
|
438
|
+
|
|
439
|
+
https://github.com/user-attachments/assets/feb23db8-15cc-4e88-be7c-01a21a03ebf6
|
|
440
|
+
|
|
441
|
+
## The Complete Agentic Solution
|
|
404
442
|
|
|
405
|
-
|
|
406
|
-
2. You also get a UI that connects directly to the pre-built FastAPI app. Use it to test, monitor and manage your system. This gives you unmatched visibility and control.
|
|
407
|
-
3. Your AgentOS runs in your cloud and you get complete privacy because no data ever leaves your system. This is incredible for security conscious enterprises that can't send data to external services.
|
|
443
|
+
For companies building agents, Agno provides the complete solution:
|
|
408
444
|
|
|
409
|
-
|
|
445
|
+
- The fastest framework for building agents, multi-agent teams and agentic workflows.
|
|
446
|
+
- A ready-to-use FastAPI app that gets you building AI products on day one.
|
|
447
|
+
- A control plane for testing, monitoring and managing your system.
|
|
410
448
|
|
|
411
|
-
|
|
449
|
+
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.
|
|
412
450
|
|
|
413
451
|
## Getting started
|
|
414
452
|
|
|
@@ -425,9 +463,7 @@ After that, checkout the [examples gallery](https://docs.agno.com/examples/intro
|
|
|
425
463
|
|
|
426
464
|
## Setup Your Coding Agent to Use Agno
|
|
427
465
|
|
|
428
|
-
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.
|
|
429
|
-
|
|
430
|
-
This file is built for AI systems to efficiently parse and reference our documentation.
|
|
466
|
+
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.
|
|
431
467
|
|
|
432
468
|
### IDE Integration
|
|
433
469
|
|
|
@@ -442,42 +478,52 @@ Now, Cursor will have access to the Agno documentation. You can do the same with
|
|
|
442
478
|
|
|
443
479
|
## Performance
|
|
444
480
|
|
|
445
|
-
|
|
481
|
+
If you're building with Agno, you're guaranteed best-in-class performance by default. Our obsession with performance is necessary because even simple AI workflows can spawn hundreds of Agents and because many tasks are long-running -- stateless, horizontal scalability is key for success.
|
|
482
|
+
|
|
483
|
+
At Agno, we optimize performance across 3 dimensions:
|
|
484
|
+
|
|
485
|
+
1. **Agent performance:** We optimize static operations (instantiation, memory footprint) and runtime operations (tool calls, memory updates, history management).
|
|
486
|
+
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.
|
|
487
|
+
3. **Agent reliability and accuracy:** Monitored through evals, which we’ll explore later.
|
|
488
|
+
|
|
489
|
+
### Agent Performance
|
|
490
|
+
|
|
491
|
+
Let's measure the time it takes to instantiate an Agent and the memory footprint of an Agent. Here are the numbers (last measured in Oct 2025, on an Apple M4 MacBook Pro):
|
|
446
492
|
|
|
447
|
-
- Agent instantiation
|
|
448
|
-
- Memory footprint
|
|
493
|
+
- **Agent instantiation:** ~3μs on average
|
|
494
|
+
- **Memory footprint:** ~6.6Kib on average
|
|
449
495
|
|
|
450
|
-
|
|
496
|
+
We'll show below that Agno Agents instantiate **529× faster than Langgraph**, **57× faster than PydanticAI**, and **70× faster than CrewAI**. Agno Agents also use **24× lower memory than Langgraph**, **4× lower than PydanticAI**, and **10× lower than CrewAI**.
|
|
451
497
|
|
|
452
|
-
|
|
498
|
+
> [!NOTE]
|
|
499
|
+
> Run time performance is bottlenecked by inference and hard to benchmark accurately, so we focus on minimizing overhead, reducing memory usage, and parallelizing tool calls.
|
|
453
500
|
|
|
454
501
|
### Instantiation Time
|
|
455
502
|
|
|
456
|
-
Let's measure
|
|
503
|
+
Let's measure instantiation time for an Agent with 1 tool. We'll run the evaluation 1000 times to get a baseline measurement. We'll compare Agno to LangGraph, CrewAI and Pydantic AI.
|
|
457
504
|
|
|
458
|
-
|
|
505
|
+
> [!NOTE]
|
|
506
|
+
> The code for this benchmark is available [here](https://github.com/agno-agi/agno/tree/main/cookbook/evals/performance). You should run the evaluation yourself on your own machine, please, do not take these results at face value.
|
|
459
507
|
|
|
460
508
|
```shell
|
|
461
509
|
# Setup virtual environment
|
|
462
510
|
./scripts/perf_setup.sh
|
|
463
511
|
source .venvs/perfenv/bin/activate
|
|
464
|
-
# OR Install dependencies manually
|
|
465
|
-
# pip install openai agno langgraph langchain_openai
|
|
466
512
|
|
|
467
513
|
# Agno
|
|
468
514
|
python cookbook/evals/performance/instantiate_agent_with_tool.py
|
|
469
515
|
|
|
470
516
|
# LangGraph
|
|
471
517
|
python cookbook/evals/performance/comparison/langgraph_instantiation.py
|
|
518
|
+
# CrewAI
|
|
519
|
+
python cookbook/evals/performance/comparison/crewai_instantiation.py
|
|
520
|
+
# Pydantic AI
|
|
521
|
+
python cookbook/evals/performance/comparison/pydantic_ai_instantiation.py
|
|
472
522
|
```
|
|
473
523
|
|
|
474
|
-
|
|
524
|
+
LangGraph is on the right, **let's start it first and give it a head start**. Then CrewAI and Pydantic AI follow, and finally Agno. Agno obviously finishes first, but let's see by how much.
|
|
475
525
|
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
Agno is on the left, notice how it finishes before LangGraph gets 1/2 way through the runtime measurement, and hasn't even started the memory measurement. That's how fast Agno is.
|
|
479
|
-
|
|
480
|
-
https://github.com/user-attachments/assets/ba466d45-75dd-45ac-917b-0a56c5742e23
|
|
526
|
+
https://github.com/user-attachments/assets/54b98576-1859-4880-9f2d-15e1a426719d
|
|
481
527
|
|
|
482
528
|
### Memory Usage
|
|
483
529
|
|
|
@@ -485,11 +531,24 @@ To measure memory usage, we use the `tracemalloc` library. We first calculate a
|
|
|
485
531
|
|
|
486
532
|
We recommend running the evaluation yourself on your own machine, and digging into the code to see how it works. If we've made a mistake, please let us know.
|
|
487
533
|
|
|
488
|
-
###
|
|
534
|
+
### Results
|
|
535
|
+
|
|
536
|
+
Taking Agno as the baseline, we can see that:
|
|
537
|
+
|
|
538
|
+
| Metric | Agno | Langgraph | PydanticAI | CrewAI |
|
|
539
|
+
| ------------------ | ---- | ----------- | ---------- | ---------- |
|
|
540
|
+
| **Time (seconds)** | 1× | 529× slower | 57× slower | 70× slower |
|
|
541
|
+
| **Memory (MiB)** | 1× | 24× higher | 4× higher | 10× higher |
|
|
542
|
+
|
|
543
|
+
Exact numbers from the benchmark:
|
|
489
544
|
|
|
490
|
-
|
|
545
|
+
| Metric | Agno | Langgraph | PydanticAI | CrewAI |
|
|
546
|
+
| ------------------ | -------- | --------- | ---------- | -------- |
|
|
547
|
+
| **Time (seconds)** | 0.000003 | 0.001587 | 0.000170 | 0.000210 |
|
|
548
|
+
| **Memory (MiB)** | 0.006642 | 0.161435 | 0.028712 | 0.065652 |
|
|
491
549
|
|
|
492
|
-
|
|
550
|
+
> [!NOTE]
|
|
551
|
+
> Agno agents are designed for performance and while we share benchmarks against other frameworks, we should be mindful that accuracy and reliability are more important than speed.
|
|
493
552
|
|
|
494
553
|
## Contributions
|
|
495
554
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
agno/__init__.py,sha256=fTmeyAdl4Mc1Y7_y_sACZTzXrc2Ymn8nMaFlgaawFvo,183
|
|
2
2
|
agno/debug.py,sha256=zzYxYwfF5AfHgQ6JU7oCmPK4yc97Y5xxOb5fiezq8nA,449
|
|
3
|
-
agno/exceptions.py,sha256
|
|
3
|
+
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=V6UeCaN5WBY4P7VPL-wDJZyabS07UZ0hiSws-DQfRkA,403495
|
|
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
|
|
@@ -28,41 +28,45 @@ agno/cloud/aws/s3/api_client.py,sha256=nW-Jn8WPILIvdH8niQOPpKMXlAIDB2xYTz0GHRy4P
|
|
|
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
30
|
agno/db/__init__.py,sha256=bfd_tpKsIKCjZosnFqID26VoWqy88v8gzkf9kLHToY4,625
|
|
31
|
-
agno/db/base.py,sha256=
|
|
31
|
+
agno/db/base.py,sha256=6TH1o793gLUdQELqryid7UITLoSreXjVziRwXpK060k,16648
|
|
32
32
|
agno/db/utils.py,sha256=eL0prfDrTEfOwNlOZeoZE4pu59bNJET22uh8wgzz-cw,4879
|
|
33
|
+
agno/db/async_postgres/__init__.py,sha256=hrSt23PFoBqje-AdZV3z0lBRtR8M3NagPH052A4DlqM,97
|
|
34
|
+
agno/db/async_postgres/async_postgres.py,sha256=DzQ5bU1oMn5rG7lCi1xKIGs0zbiFR_d8qyv5RnJ0IbQ,69277
|
|
35
|
+
agno/db/async_postgres/schemas.py,sha256=3N9aeJWlW3TTzqQGjpzk3wS7cNTuUwwQr47C-40E5q8,5280
|
|
36
|
+
agno/db/async_postgres/utils.py,sha256=YQ_ueeRdJdZ8-Jrs0qhmHOxAVKjWKockB5iVQffdkj8,9993
|
|
33
37
|
agno/db/dynamo/__init__.py,sha256=fZ7NwKbyhoIu7_4T6hVz44HkIINXMnTfFrDrgB6bpEo,67
|
|
34
|
-
agno/db/dynamo/dynamo.py,sha256=
|
|
38
|
+
agno/db/dynamo/dynamo.py,sha256=i76y8aVZO2yuk1f0us4Q6Y2AhCmEMo8-WcFGNxYZ7ug,71616
|
|
35
39
|
agno/db/dynamo/schemas.py,sha256=vCB9-BN255muGpw5wt-5aolm8rHO5QI2SEfwfSc2HeY,11079
|
|
36
40
|
agno/db/dynamo/utils.py,sha256=WnFKxZJtnfyJ6rdU2oUCofUyFqjlo2_hB9Q5fkez8V4,25058
|
|
37
41
|
agno/db/firestore/__init__.py,sha256=lYAJjUs4jMxJFty1GYZw464K35zeuBlcoFR9uuIQYtI,79
|
|
38
|
-
agno/db/firestore/firestore.py,sha256=
|
|
42
|
+
agno/db/firestore/firestore.py,sha256=m43nqyp9kOqGrEGYZAbJMJCUgy2zL9t5bpl6Zkm7sn4,61575
|
|
39
43
|
agno/db/firestore/schemas.py,sha256=k8YuG_PC_Hd3WCLaDkk4bAJP8BmAWmrt6VXuG1wr2Ak,4132
|
|
40
|
-
agno/db/firestore/utils.py,sha256=
|
|
44
|
+
agno/db/firestore/utils.py,sha256=OT1qvVGnf8iChCb-nw57HBSQRMALmNC_KaqFxuT7VoA,10311
|
|
41
45
|
agno/db/gcs_json/__init__.py,sha256=aTR4o3aFrzfANHtRw7nX9uc5_GsY52ch0rmoo7uXuc4,76
|
|
42
|
-
agno/db/gcs_json/gcs_json_db.py,sha256=
|
|
46
|
+
agno/db/gcs_json/gcs_json_db.py,sha256=v0wE62gyMkFUPZ5OilARTUEqNdoW86YhyxmvIlhu0HY,47077
|
|
43
47
|
agno/db/gcs_json/utils.py,sha256=Ist4HuQoYvC2BKr01oTxDp9mfMirz1UBBDKElbXg2bg,6610
|
|
44
48
|
agno/db/in_memory/__init__.py,sha256=OvR_FONhOh9PmcRfUA_6gvplZT5UGIBAgVKqVg6SWTA,80
|
|
45
|
-
agno/db/in_memory/in_memory_db.py,sha256=
|
|
49
|
+
agno/db/in_memory/in_memory_db.py,sha256=9RQvbBdZ1ekD2p8E4EZxoWk9TWGJAgYDGpa7_hmM7hk,41355
|
|
46
50
|
agno/db/in_memory/utils.py,sha256=X02wny18w5uvGE3caokPbCQTG6t7OErWNPkK3Umru3s,5780
|
|
47
51
|
agno/db/json/__init__.py,sha256=zyPTmVF9S-OwXCL7FSkrDmunZ_Q14YZO3NYUv1Pa14Y,62
|
|
48
|
-
agno/db/json/json_db.py,sha256=
|
|
52
|
+
agno/db/json/json_db.py,sha256=ep1edUGQA-pUGAGxROLECrspEycZxVxHOk-y7qRVcmE,47655
|
|
49
53
|
agno/db/json/utils.py,sha256=__c14xMdyw1AlyV7-DAGDr8YicqhfCbSS5C8OkVN2So,6658
|
|
50
54
|
agno/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
agno/db/migrations/v1_to_v2.py,sha256=
|
|
55
|
+
agno/db/migrations/v1_to_v2.py,sha256=LtRliKUyrLbPhCcWwRz909_if442B3Nah7zqDjEdOCk,24415
|
|
52
56
|
agno/db/mongo/__init__.py,sha256=EPa9QkGNVwnuej72LhZDCeASMXa-e0pR20jsgwa9BhY,63
|
|
53
|
-
agno/db/mongo/mongo.py,sha256=
|
|
57
|
+
agno/db/mongo/mongo.py,sha256=3gn-9D57RaPINATl_aBX-WxDZ0VhTwk-WhhSWR7KLy8,68685
|
|
54
58
|
agno/db/mongo/schemas.py,sha256=MAhfwx7_zxKucnZpgq_YSZANaF5MqiZ6qDByhdIREk8,2054
|
|
55
59
|
agno/db/mongo/utils.py,sha256=dmVo0HGIG7IPKdCjuRDcO0ZOtyXcNkP6S2G-XBFqzZE,6906
|
|
56
60
|
agno/db/mysql/__init__.py,sha256=ohBMZ1E6ctioEF0XX5PjC4LtUQrc6lFkjsE4ojyXA8g,63
|
|
57
|
-
agno/db/mysql/mysql.py,sha256=
|
|
61
|
+
agno/db/mysql/mysql.py,sha256=Xg1K6jjqbbDZD5uHQbl8R2TPn61eCJsWRb_Y3fJJs2c,86614
|
|
58
62
|
agno/db/mysql/schemas.py,sha256=2OAaX7ILykFCJBcEWH6kFXzNI8JnnYZCXClbVUoRbLc,5482
|
|
59
63
|
agno/db/mysql/utils.py,sha256=7E83u2gKOkr7lxFPGM2ucLvfJarbEtNRxOeZQhLYKzU,10066
|
|
60
64
|
agno/db/postgres/__init__.py,sha256=eEdY4emRxmBmxeZUhAYSaObgcqKdd6C9IxUSk1U0gDY,75
|
|
61
|
-
agno/db/postgres/postgres.py,sha256=
|
|
65
|
+
agno/db/postgres/postgres.py,sha256=YNhL3jiSX-9uYzrGUYpJlzWQ0HeN26pcx9HpYPkPGiU,82524
|
|
62
66
|
agno/db/postgres/schemas.py,sha256=adbKcMapqeXsEYeF6feWe2ja1paRzCMOkQSHHN6Psp8,5275
|
|
63
67
|
agno/db/postgres/utils.py,sha256=iaY0ZqJgzadCitxSbsRchCtBE5WeUApfIj-VbdH9MJI,9447
|
|
64
68
|
agno/db/redis/__init__.py,sha256=rZWeZ4CpVeKP-enVQ-SRoJ777i0rdGNgoNDRS9gsfAc,63
|
|
65
|
-
agno/db/redis/redis.py,sha256=
|
|
69
|
+
agno/db/redis/redis.py,sha256=33oRsaBur0rInV9iXPwlHoDLpuq0keqggKm6wx2E_b8,55859
|
|
66
70
|
agno/db/redis/schemas.py,sha256=LE1NApES1ao5X770HXB7jvrk2n31KiOWAsl5Z0xMG08,3637
|
|
67
71
|
agno/db/redis/utils.py,sha256=z1pyakjlCQ_FyQUXe8pPer-pQDG70GLDOYQLNl4Oxrg,8955
|
|
68
72
|
agno/db/schemas/__init__.py,sha256=HIKc2Apyk6ENJb_Py6sgNdbl6H7eo6PD5QMTmkdJSwI,72
|
|
@@ -72,17 +76,17 @@ agno/db/schemas/memory.py,sha256=kKlJ6AWpbwz-ZJfBJieartPP0QqeeoKAXx2Ity4Yj-Y,146
|
|
|
72
76
|
agno/db/schemas/metrics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
77
|
agno/db/singlestore/__init__.py,sha256=dufbaod8ZZIeZIVi0hYJQ8Eu2DfIfWdIy00cpqAsx9U,87
|
|
74
78
|
agno/db/singlestore/schemas.py,sha256=yDXBGtswAuVxKX1_GvKIBt6IlEor2HiAbYPrwX5SSJ8,5489
|
|
75
|
-
agno/db/singlestore/singlestore.py,sha256=
|
|
79
|
+
agno/db/singlestore/singlestore.py,sha256=t3zp1Nf2RIDt2LtaAMeyyLKn0cymQCDK-ZjT-vcuzhs,83267
|
|
76
80
|
agno/db/singlestore/utils.py,sha256=LG0NhOx5B5oJY-Kcc_3ipNzBT1J-mBGx8TARUkRtWv8,11377
|
|
77
81
|
agno/db/sqlite/__init__.py,sha256=LocJ-suv6xpdun8HUxgbD3bTgmQArQvLJkbpb1pRGy0,67
|
|
78
82
|
agno/db/sqlite/schemas.py,sha256=-L3hmlg80PAPmfexPrWtnepSzlmZHrbyPZ754nJlVdE,5191
|
|
79
|
-
agno/db/sqlite/sqlite.py,sha256=
|
|
80
|
-
agno/db/sqlite/utils.py,sha256=
|
|
83
|
+
agno/db/sqlite/sqlite.py,sha256=3IVpSiqosz-kTZcsw5ELxICc6Z6e039RyJbVVMV7vC4,84555
|
|
84
|
+
agno/db/sqlite/utils.py,sha256=DgG9G2g37ry9KscNOdi5AC8DYlSEbIAlRI0qGMfTyIs,9637
|
|
81
85
|
agno/eval/__init__.py,sha256=vCYcIbfOkT2lL8vZJ9zsea6j3byp5A-mxEb_45VaD8I,449
|
|
82
|
-
agno/eval/accuracy.py,sha256=
|
|
83
|
-
agno/eval/performance.py,sha256=
|
|
84
|
-
agno/eval/reliability.py,sha256=
|
|
85
|
-
agno/eval/utils.py,sha256=
|
|
86
|
+
agno/eval/accuracy.py,sha256=vfJ9Kx33YGsXenNKVHPK5h0IeB2tZMlfSKu6OA-mj9g,33065
|
|
87
|
+
agno/eval/performance.py,sha256=b4BuSlGkraym9EQick4KraA1OyMa0U7LMjoFozpNbIs,30528
|
|
88
|
+
agno/eval/reliability.py,sha256=AlD36eOh8_k06C_WU74X3klNvLtz1F56TQS6CPBUt6g,12422
|
|
89
|
+
agno/eval/utils.py,sha256=uu7ssj9kjO02m0R61ty3Zqwz4JXHt4tOPySPBhnMqjM,3869
|
|
86
90
|
agno/guardrails/__init__.py,sha256=fbKru05VuZN0Am_T_AB7YyEk-7EEwgI_obTXxQjFLr0,343
|
|
87
91
|
agno/guardrails/base.py,sha256=Izpf0R684BR_9Y8zJa3KoGLQ5naB96wrzlTxjN6ILvc,555
|
|
88
92
|
agno/guardrails/openai.py,sha256=MjNqIXL5UkPkEMX2bW7FdpfkQm7QlrXdh-fvGImT_P0,5860
|
|
@@ -93,7 +97,7 @@ agno/integrations/discord/__init__.py,sha256=MS08QSnegGgpDZd9LyLjK4pWIk9dXlbzgD7
|
|
|
93
97
|
agno/integrations/discord/client.py,sha256=2IWkA-kCDsDXByKOGq2QJG6MtFsbouzNN105rsXn95A,8375
|
|
94
98
|
agno/knowledge/__init__.py,sha256=PJCt-AGKGFztzR--Ok2TNKW5QEqllZzqiI_7f8-1u80,79
|
|
95
99
|
agno/knowledge/content.py,sha256=q2bjcjDhfge_UrQAcygrv5R9ZTk7vozzKnQpatDQWRo,2295
|
|
96
|
-
agno/knowledge/knowledge.py,sha256=
|
|
100
|
+
agno/knowledge/knowledge.py,sha256=LnBQ-feIaaHwusgBMGWvXzj4_hiZBCg-ZglfkBYE6nA,77963
|
|
97
101
|
agno/knowledge/types.py,sha256=ciwDLK9MXwi_W_g4nUChEmK6meDQyqTqGK2Ad-wM1os,754
|
|
98
102
|
agno/knowledge/utils.py,sha256=_uhEFtz4p7-cIKffdj5UZ__c-u96rs2UWP6dv5HpOMk,6490
|
|
99
103
|
agno/knowledge/chunking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -134,8 +138,8 @@ agno/knowledge/reader/field_labeled_csv_reader.py,sha256=ECcg9Fr0DtxKiAF0bLRwTIx
|
|
|
134
138
|
agno/knowledge/reader/firecrawl_reader.py,sha256=SCbcRLkMrUb2WiC6SPuAoZULtHITa2VAmBtZlGmamGM,6855
|
|
135
139
|
agno/knowledge/reader/json_reader.py,sha256=KfDgHno_XHORIGaoA1Q2Y5M7nkcTFM9IUzWXkjVjYKQ,3245
|
|
136
140
|
agno/knowledge/reader/markdown_reader.py,sha256=HoSEkX2Svl2tEMDyzAmRNmwxsterb3i3-1-EQR6N4IU,5272
|
|
137
|
-
agno/knowledge/reader/pdf_reader.py,sha256=
|
|
138
|
-
agno/knowledge/reader/reader_factory.py,sha256=
|
|
141
|
+
agno/knowledge/reader/pdf_reader.py,sha256=F1Zx5i5jTUbuuKEPEnlnzMgCAweJMehYY0igRFHuHf4,17206
|
|
142
|
+
agno/knowledge/reader/reader_factory.py,sha256=4rQ2MbdCdDOquFJWMi_o0eYzxsaGSTDcu6dQez1LHGs,10275
|
|
139
143
|
agno/knowledge/reader/s3_reader.py,sha256=j_xBDWV9l5Uhsr88glQ0dCMS-ijvqw8gdMc1Bzfm394,3547
|
|
140
144
|
agno/knowledge/reader/text_reader.py,sha256=Vkk3mWhjyazPv77Z9PGO1nRVk8cmVkUFIWZFCVqTkOI,4444
|
|
141
145
|
agno/knowledge/reader/web_search_reader.py,sha256=GMc59AxwS1zTyBEmnwzJCEbPmK4ut1eWy8EV5XXTRSk,14585
|
|
@@ -150,7 +154,7 @@ agno/knowledge/reranker/cohere.py,sha256=2Be5blVyeZ3vYlnFa2NYvJuytjaCB8G2OWJ11pQ
|
|
|
150
154
|
agno/knowledge/reranker/infinity.py,sha256=N9geg9xZqRdJZksfQcvbGJgMymXrQVJl_K5KICWqH8o,7193
|
|
151
155
|
agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_UjezfNrjFYXpNVHD4U-U,1912
|
|
152
156
|
agno/memory/__init__.py,sha256=XWKJU5SJObYZqEKMZ2XYwgH8-YeuWUoSRfT4dEI5HnY,101
|
|
153
|
-
agno/memory/manager.py,sha256=
|
|
157
|
+
agno/memory/manager.py,sha256=fgeO5e18qrjotFKM_qClPHmGbGBMwArTKalsG-tdUXo,51065
|
|
154
158
|
agno/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
159
|
agno/models/base.py,sha256=bjP0Xt5-Jlk1I_7wHmuv8lhUPE75WzZ_iF3U-d81TUI,85214
|
|
156
160
|
agno/models/defaults.py,sha256=1_fe4-ZbNriE8BgqxVRVi4KGzEYxYKYsz4hn6CZNEEM,40
|
|
@@ -161,7 +165,7 @@ agno/models/utils.py,sha256=PprNlVI8d8loHayjRsrc4TL38sfkFMS3EVZcF5cLXoA,669
|
|
|
161
165
|
agno/models/aimlapi/__init__.py,sha256=XQcFRvt4qJ8ol9nCC0XKEkVEDivdNf3nZNoJZMZ5m8M,78
|
|
162
166
|
agno/models/aimlapi/aimlapi.py,sha256=9Qh-b8HvFSvmPP3VBNGT00qy9izHLMWgR-KDQCE5CM0,1493
|
|
163
167
|
agno/models/anthropic/__init__.py,sha256=nbReX3p17JCwfrMDR9hR7-OaEFZm80I7dng93dl-Fhw,77
|
|
164
|
-
agno/models/anthropic/claude.py,sha256=
|
|
168
|
+
agno/models/anthropic/claude.py,sha256=03JQsLVHeutcWn5btUsqFNy4im2XAumGD9gOvei5bN0,28131
|
|
165
169
|
agno/models/aws/__init__.py,sha256=TbcwQwv9A7KjqBM5RQBR8x46GvyyCxbBCjwkpjfVGKE,352
|
|
166
170
|
agno/models/aws/bedrock.py,sha256=ScZcGwOMh-N0DfArXtDVzKy467QPAN0OS8llBNAc8cQ,28880
|
|
167
171
|
agno/models/aws/claude.py,sha256=sL47z9fM3jxGbARkr0mlAVYEKKX854J3u-Qeb5gIADo,14746
|
|
@@ -242,26 +246,26 @@ agno/models/vllm/vllm.py,sha256=UtiiSvUR4pG_1CzuhY5MWduRgzM2hGVTakKJ6ZBdQmo,2730
|
|
|
242
246
|
agno/models/xai/__init__.py,sha256=ukcCxnCHxTtkJNA2bAMTX4MhCv1wJcbiq8ZIfYczIxs,55
|
|
243
247
|
agno/models/xai/xai.py,sha256=jA6_39tfapkjkHKdzbKaNq1t9qIvO1IaZY1hQqEmFVs,4181
|
|
244
248
|
agno/os/__init__.py,sha256=h8oQu7vhD5RZf09jkyM_Kt1Kdq_d5kFB9gJju8QPwcY,55
|
|
245
|
-
agno/os/app.py,sha256=
|
|
249
|
+
agno/os/app.py,sha256=tkMf3zl1cVtx_UMc8hhAXYm78xWCxpdaDB4xmTKqIeM,26723
|
|
246
250
|
agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
|
|
247
251
|
agno/os/config.py,sha256=u4R9yazQXIcKjR3QzEIZw_XAe_OHp3xn0ff7SVkj2jA,2893
|
|
248
|
-
agno/os/mcp.py,sha256=
|
|
249
|
-
agno/os/router.py,sha256
|
|
250
|
-
agno/os/schema.py,sha256=
|
|
252
|
+
agno/os/mcp.py,sha256=vJhjjSm1KC61HLoxPj24lSrjkjo7plkoFfcQX2BmTp0,10253
|
|
253
|
+
agno/os/router.py,sha256=eRxyRX9FjgxtaYwrtNCJLiWH2m6gx6L5zYCff1Gv1ew,71106
|
|
254
|
+
agno/os/schema.py,sha256=Jlm-vM79iyj-cytWkyKFC4BN4kQV-IaiDqTujvdRzEk,39895
|
|
251
255
|
agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
|
|
252
|
-
agno/os/utils.py,sha256=
|
|
256
|
+
agno/os/utils.py,sha256=QbSdAI7F4vtbMrTRaeqSHPPbq59yUb8ZStNtTtDtAXA,20018
|
|
253
257
|
agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
254
258
|
agno/os/interfaces/base.py,sha256=vXkr1tRjWHTcmBlQFzvQjqURLhObmFtUAx82uij_j48,542
|
|
255
259
|
agno/os/interfaces/a2a/__init__.py,sha256=Fs7--dx9drvtVS9QjsCCm0P7c-hJ7TzU8gNwKTQsZDA,62
|
|
256
260
|
agno/os/interfaces/a2a/a2a.py,sha256=UiTX-GOuXxp1CQzRgtmgSSYNn2iFC_vKYnC37OidygM,1337
|
|
257
|
-
agno/os/interfaces/a2a/router.py,sha256=
|
|
261
|
+
agno/os/interfaces/a2a/router.py,sha256=p3UlrgYhx5SnudOh6PQh3Mx8qLbd6an-FW_fZfVcaP8,11009
|
|
258
262
|
agno/os/interfaces/a2a/utils.py,sha256=rTn9x0UGbX53EiAsljf87PmzYwLuvqaobUWpCn35ut0,39285
|
|
259
263
|
agno/os/interfaces/agui/__init__.py,sha256=1zrGICk4roXUINwSFZfqH6sBsbHmD5KjGYVJMGg4fKQ,66
|
|
260
264
|
agno/os/interfaces/agui/agui.py,sha256=PKGoDDbtQFmEC0zRwZmsjS_5t9bJWJ-ZGwxEQsu9P-U,1415
|
|
261
|
-
agno/os/interfaces/agui/router.py,sha256=
|
|
262
|
-
agno/os/interfaces/agui/utils.py,sha256=
|
|
265
|
+
agno/os/interfaces/agui/router.py,sha256=fKBxLl8oG8QK6Dq6w9G5OhfX1FaHsWHelxHy4WlRAf0,4876
|
|
266
|
+
agno/os/interfaces/agui/utils.py,sha256=d97r8EJ9GZ3TwmI53ZcOTy4ICHiFX3s6WY75UnsolyQ,20162
|
|
263
267
|
agno/os/interfaces/slack/__init__.py,sha256=F095kOcgiyk_KzIozNNieKwpVc_NR8HYpuO4bKiCNN0,70
|
|
264
|
-
agno/os/interfaces/slack/router.py,sha256=
|
|
268
|
+
agno/os/interfaces/slack/router.py,sha256=KVR6jerRnjw6hRLDs3NR8ScIJx2MDACcVOAyQyJEm6A,5466
|
|
265
269
|
agno/os/interfaces/slack/security.py,sha256=nMbW_0g-G_DEMbCQOD8C3PYrRPIpB2cyM6P-xS6GHYk,917
|
|
266
270
|
agno/os/interfaces/slack/slack.py,sha256=3fYuaWVA0qu435U4EBc9QrIYp96277TyD4awQqxK-os,1153
|
|
267
271
|
agno/os/interfaces/whatsapp/__init__.py,sha256=-sD2W00qj8hrx72ATVMtaDc7GfAsaCQJMlnRjYPwisg,82
|
|
@@ -274,29 +278,32 @@ agno/os/routers/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,9
|
|
|
274
278
|
agno/os/routers/health.py,sha256=MpJrg488T0m8jU0mtoBNPiLhlR2r2gFihvyZwdQh_oc,725
|
|
275
279
|
agno/os/routers/home.py,sha256=xe8DYJkRgad55qiza0lHt8pUIV5PLSyu2MkybjuPDDE,1708
|
|
276
280
|
agno/os/routers/evals/__init__.py,sha256=3s0M-Ftg5A3rFyRfTATs-0aNA6wcbj_5tCvtwH9gORQ,87
|
|
277
|
-
agno/os/routers/evals/evals.py,sha256=
|
|
281
|
+
agno/os/routers/evals/evals.py,sha256=oA6KpeIjlclMAXn1XkpJ147SvJZxr3AhsX__5fl9dX4,18266
|
|
278
282
|
agno/os/routers/evals/schemas.py,sha256=3Ebm3IrpX22Hg3ZatMRkozgS4TfnMki4_UbqCNtQvJ4,4800
|
|
279
|
-
agno/os/routers/evals/utils.py,sha256=
|
|
283
|
+
agno/os/routers/evals/utils.py,sha256=Zi5f2hWqcDrcZ3f3MfC1Sx9_NUYz7rzIt8D-FrluwhM,5538
|
|
280
284
|
agno/os/routers/knowledge/__init__.py,sha256=ZSqMQ8X7C_oYn8xt7NaYlriarWUpHgaWDyHXOWooMaU,105
|
|
281
|
-
agno/os/routers/knowledge/knowledge.py,sha256=
|
|
282
|
-
agno/os/routers/knowledge/schemas.py,sha256=
|
|
285
|
+
agno/os/routers/knowledge/knowledge.py,sha256=9MaMzPjSlsRioms9_J_Nso1hkAMMfx0h6Yql4cPUMZY,43841
|
|
286
|
+
agno/os/routers/knowledge/schemas.py,sha256=T8bbzi6dbUxNUT8_oStSfOua6I7c9AGh4qy6TTP4oPI,6694
|
|
283
287
|
agno/os/routers/memory/__init__.py,sha256=9hrYFc1dkbsLBqKfqyfioQeLX9TTbLrJx6lWDKNNWbc,93
|
|
284
|
-
agno/os/routers/memory/memory.py,sha256=
|
|
288
|
+
agno/os/routers/memory/memory.py,sha256=1by03MSaE0ysd4DaUVHxAs3lslL4gql9_HSFfMoJmiQ,20432
|
|
285
289
|
agno/os/routers/memory/schemas.py,sha256=yhQUF5m_y5bJQj1N4mKesUG3xmpE2TyZqF92LNqzm1w,1701
|
|
286
290
|
agno/os/routers/metrics/__init__.py,sha256=Uw6wWEikLpF5hHxBkHtFyaTuz7OUerGYWk0JW7teUGQ,97
|
|
287
|
-
agno/os/routers/metrics/metrics.py,sha256=
|
|
291
|
+
agno/os/routers/metrics/metrics.py,sha256=X0BUBLqX5YKOPVjS2J7SvOYgX1iq7sZjpIYO-gSOBY0,8485
|
|
288
292
|
agno/os/routers/metrics/schemas.py,sha256=E7F31CXg9_JiBqeNZWFsZCraShqEHIDD8pDfS4E2oco,1633
|
|
289
293
|
agno/os/routers/session/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
|
|
290
|
-
agno/os/routers/session/session.py,sha256=
|
|
294
|
+
agno/os/routers/session/session.py,sha256=an63SLl9atM8Bdu-iy27z3b_NZDCKeEcNAZ0OqCEJxs,34090
|
|
291
295
|
agno/reasoning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
+
agno/reasoning/anthropic.py,sha256=RRGINflEXuY5kkUbC8_1ztTVY708YaUm3dEqSW7twcI,3130
|
|
292
297
|
agno/reasoning/azure_ai_foundry.py,sha256=VL7DmFpuYMf_gLFAZ9kUCS7Zb3pNhDaEingRZcyUdQY,2594
|
|
293
298
|
agno/reasoning/deepseek.py,sha256=Xj_QkaN9ivbtD_IMojd_hlLBijdnyi8fQd3Iz1k9-hQ,2231
|
|
294
299
|
agno/reasoning/default.py,sha256=KFOhfgz9ERICRpKakow60SYIRlF7LIrM7fp0TLHma4w,5318
|
|
300
|
+
agno/reasoning/gemini.py,sha256=c1efsxn_NCyCri0UCZmyrOl77KDeVcSnpY2pu-QIDqc,2798
|
|
295
301
|
agno/reasoning/groq.py,sha256=1rV_-RTy924U3uTshN7fja1E4fiCbx8HYGxuWGjGGcQ,2638
|
|
296
302
|
agno/reasoning/helpers.py,sha256=77gce_FQDGGVwM1-j5Zc_ds5FRZy9l7EcH2cp0WkJrI,2153
|
|
297
303
|
agno/reasoning/ollama.py,sha256=hJPmpBD07W6SOphkg-EifLYqosM330fxv-SbeEhoG74,2558
|
|
298
|
-
agno/reasoning/openai.py,sha256=
|
|
304
|
+
agno/reasoning/openai.py,sha256=JYk-mR9cMf1ibprX3MdL8oeCEDyQ3XaJw9PAIYvWeGk,3234
|
|
299
305
|
agno/reasoning/step.py,sha256=6DaOb_0DJRz9Yh1w_mxcRaOSVzIQDrj3lQ6rzHLdIwA,1220
|
|
306
|
+
agno/reasoning/vertexai.py,sha256=O9ntvalkIY2jLmWviEH1DnecMskqTL-mRZQBZohoHiU,2974
|
|
300
307
|
agno/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
308
|
agno/run/agent.py,sha256=JaQf4cDTwH6hRJdlhgnbOxnJUT8yry7cLRo1PX0u-OE,23899
|
|
302
309
|
agno/run/base.py,sha256=x37ecdhKdb3dbW23d8t2JPBZwrwIC93lRvT1-76CK0c,7059
|
|
@@ -308,9 +315,9 @@ agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
|
|
|
308
315
|
agno/session/agent.py,sha256=vut3IwCivUu0vvuht_1c3rUhW61NZee6whxDQUsEkUM,9756
|
|
309
316
|
agno/session/summary.py,sha256=THBbzE48V81p4dKUX2W8OvbpsNO5dI6BdtqDyjfcVqw,8433
|
|
310
317
|
agno/session/team.py,sha256=0lS-9ljtG17iyC0n8sq_7aEy9MZsdfMf8VgObqJ_3tg,10384
|
|
311
|
-
agno/session/workflow.py,sha256
|
|
318
|
+
agno/session/workflow.py,sha256=tluE_3ERMBYJtffpwlrhdETWlzJk6Xw2x06FZ1Y3fXg,7397
|
|
312
319
|
agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
|
|
313
|
-
agno/team/team.py,sha256=
|
|
320
|
+
agno/team/team.py,sha256=FHMS_CMRzpDjGrwGDvnyHfIS8EMQrVR3yrNbbDbQDJY,372209
|
|
314
321
|
agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
|
|
315
322
|
agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
|
|
316
323
|
agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
|
|
@@ -359,7 +366,7 @@ agno/tools/google_drive.py,sha256=dxGr_NhMsqFsr_tR3w4MgLXm7_nlCTI43sCmKw60N_4,11
|
|
|
359
366
|
agno/tools/google_maps.py,sha256=AqPEIt4u6B2kQtzOnL5PH3RXoefCfjT_Uvm3coAqzaY,9513
|
|
360
367
|
agno/tools/googlecalendar.py,sha256=s8BPKvDZGeLD2idlQG-vqDqVpza6PupF5AzAElnAK_M,27457
|
|
361
368
|
agno/tools/googlesearch.py,sha256=xRuaEqn7N6JIQC6z9jFuA0Kdtoe5MafGqRMtZ8jW2AQ,3566
|
|
362
|
-
agno/tools/googlesheets.py,sha256=
|
|
369
|
+
agno/tools/googlesheets.py,sha256=m8K0A8I5d68HG19OajDLCgGJzXnsnh33OQQOc6K5Qbg,15704
|
|
363
370
|
agno/tools/hackernews.py,sha256=h5w-L5FkGGMAHr6Jjez6164-UYZ_2r2qFAzwMrKLdRM,2776
|
|
364
371
|
agno/tools/jina.py,sha256=xa0yxcxsSZ1-BzxO3PJKNWnWrv64DxbpvRHTPFXWhC4,4036
|
|
365
372
|
agno/tools/jira.py,sha256=O8oBtAXGTzlLSjNHNs290B8Bo0nrJ45NRYzsR1KupNk,5907
|
|
@@ -369,7 +376,7 @@ agno/tools/linkup.py,sha256=EzX4_ARW96DkFe1IXAFlPQI5rdhhdhmNTX1tB5IVFWs,2123
|
|
|
369
376
|
agno/tools/local_file_system.py,sha256=wWyhM5-lqDgDO_YNzRA8ekG-m2n89k8fWr8M1BWiQWo,3157
|
|
370
377
|
agno/tools/lumalab.py,sha256=6WnZXbThKY2jL9zLswq1PVsbFm2jz81qshWqBZi59oo,6808
|
|
371
378
|
agno/tools/mcp.py,sha256=xsKZ1EY3-DmHlDPeWTlVBCJv5DKkTKX_KZvmC1o8M-w,27765
|
|
372
|
-
agno/tools/mcp_toolbox.py,sha256=
|
|
379
|
+
agno/tools/mcp_toolbox.py,sha256=z6qZqUOmYueBoiQtTqRWV9GohhCAd3s5D4GyqtezHeY,12760
|
|
373
380
|
agno/tools/mem0.py,sha256=5W5pZwJmBTt-_l4nvBdNQHavXFSKV9mVdJg5aso4JBI,7680
|
|
374
381
|
agno/tools/memori.py,sha256=tubBYj0rQFbBXadhWxwTjjmb3Rnims536AVPkGdCMcw,13181
|
|
375
382
|
agno/tools/memory.py,sha256=vpMoKtCqs3m6vkuqmZ4fW9IRf1OhXHQGGaq3exJK0Xo,18449
|
|
@@ -392,7 +399,7 @@ agno/tools/reasoning.py,sha256=5k2D89s0mAqJGo5AVBM6XDvJHjfun3GqollhVkZ6rxk,12581
|
|
|
392
399
|
agno/tools/reddit.py,sha256=F6lUJFAoQmuZMqppauMteF1BprDj8mpu-lVd1reUJTk,18632
|
|
393
400
|
agno/tools/replicate.py,sha256=xVh6F2OCjIuCT8qt_ryzHb46ZctQ3_9bQhXQ5-HrzYQ,4459
|
|
394
401
|
agno/tools/resend.py,sha256=TKsb5W_Yj0SaVBFL2ySACkehIW6bPnQ9GzYwldfordo,1990
|
|
395
|
-
agno/tools/scrapegraph.py,sha256=
|
|
402
|
+
agno/tools/scrapegraph.py,sha256=j72ZfoITjqcRgGUesgHZddwt9kj1dS1KGyLKI0EFbHE,8328
|
|
396
403
|
agno/tools/searxng.py,sha256=t041lAuCIAREU6I13SvNwh3B27m62c_0mfiB3_bx9vw,4970
|
|
397
404
|
agno/tools/serpapi.py,sha256=3jTBH93OiN7LvS7zJt4xOhkNsNd_SADHLKzQKDckh2s,3925
|
|
398
405
|
agno/tools/serper.py,sha256=3UfqCgJLjQopomy_7JDWHN6WOyOYKlTr1bOpw1vd934,9069
|
|
@@ -465,7 +472,7 @@ agno/utils/response_iterator.py,sha256=MgtadrOuMcw2vJcVvhJdMKRzpVddhLWUIkGFbBz7Z
|
|
|
465
472
|
agno/utils/safe_formatter.py,sha256=zLrW6O-nGUZvXoDkZOTgVpjeUFTmMUj8pk3FLvW_XjM,809
|
|
466
473
|
agno/utils/serialize.py,sha256=XvQA_KSkVd5qI1QuZwdQpCsl1IOKddFu52Jl6WQASqU,904
|
|
467
474
|
agno/utils/shell.py,sha256=JaY14Fq3ulodG4SeSdLEoOZDI4JJlmCbdgwK5beJuc8,700
|
|
468
|
-
agno/utils/streamlit.py,sha256=
|
|
475
|
+
agno/utils/streamlit.py,sha256=IKKOkYGqlSvW0JKlWrI2393a4DmL4gW5rW-cnEhhTZ4,17993
|
|
469
476
|
agno/utils/string.py,sha256=iO1etmjHVxnPMTixAKlpR1vnBnRapYL2pm_cjhS06Ww,7557
|
|
470
477
|
agno/utils/team.py,sha256=VXdm41WhsC6Rb20fHcpO4H55obQ6R435luAAZ4Jc3yQ,1853
|
|
471
478
|
agno/utils/timer.py,sha256=Fuax69yh1cVIzCYMmJDB4HpTsPM8Iiq1VaTWz1vJtF8,1282
|
|
@@ -475,7 +482,7 @@ agno/utils/whatsapp.py,sha256=242VwGOdbgkxVeIj4D899mpT3GnG_IpcaKnd5qebhTA,9936
|
|
|
475
482
|
agno/utils/yaml_io.py,sha256=cwTqCE-eBGoi87KLDcwB6iyWe0NcvEmadQjWL1cQ7jE,860
|
|
476
483
|
agno/utils/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
484
|
agno/utils/models/ai_foundry.py,sha256=PmhETWhdqZCq8NbDe-MdZVuRXx6DbVOePCyPFiPLceo,1511
|
|
478
|
-
agno/utils/models/claude.py,sha256=
|
|
485
|
+
agno/utils/models/claude.py,sha256=kyg_CFJ3-AyzhrT0_r2KC2HwmmoGG-EOiTK0LQnqsA0,11356
|
|
479
486
|
agno/utils/models/cohere.py,sha256=wir2K9u4RmOwq7T7n_2UPZFHfwmnrt_u91Psd_DFqdE,3266
|
|
480
487
|
agno/utils/models/llama.py,sha256=Z5fdOFUFnov1JgUDcP6ICK3M7o64UB1fkcwAs2XaZkM,2515
|
|
481
488
|
agno/utils/models/mistral.py,sha256=SVcJ8Q8SFeadNwCr8BARbET0gvGiylmaDKzcSJ9kWq0,4189
|
|
@@ -487,60 +494,60 @@ agno/utils/print_response/agent.py,sha256=Er4YxWTMsSewC0Ckr0woabyOzT0XyLNzmXuIty
|
|
|
487
494
|
agno/utils/print_response/team.py,sha256=b1JzAS_oskX_0aw2Xw4JPtNLoOyWUBT_g2JToWhPT70,78659
|
|
488
495
|
agno/utils/print_response/workflow.py,sha256=OwSodeoUhWHBKWZlv2eObPl0brzV_LndFrPEHn518Lc,72083
|
|
489
496
|
agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
|
|
490
|
-
agno/vectordb/base.py,sha256=
|
|
497
|
+
agno/vectordb/base.py,sha256=Z5IN4kcO0privHOOI16z-G--PtjfnMrBNrsLx3umokM,3848
|
|
491
498
|
agno/vectordb/distance.py,sha256=OjpKSq57_gblZm4VGZTV7B7le45r_2-Fp1X4Hilx1M4,131
|
|
492
499
|
agno/vectordb/search.py,sha256=9lJjTm2nvykn3MeVg0stB1qDZb_q-S7GG1MMS9P12e8,121
|
|
493
500
|
agno/vectordb/cassandra/__init__.py,sha256=1N7lA9QDVWsCD5V5qvXjhACVDMWlq8f37hhNBWOcZA0,88
|
|
494
|
-
agno/vectordb/cassandra/cassandra.py,sha256=
|
|
501
|
+
agno/vectordb/cassandra/cassandra.py,sha256=9t8nIBUIKQaiUQO5YVruoDomgPlUWzJAX1i5wOSXYdY,20606
|
|
495
502
|
agno/vectordb/cassandra/extra_param_mixin.py,sha256=tCgHnXxuy3Ea4bhrBGkejz9kpgLyM_sUf3QfWcjqzLQ,315
|
|
496
503
|
agno/vectordb/cassandra/index.py,sha256=9Ea-AoAxCQf2xP-RoIwvujVdzpNBcm2Qgcs4O5D40cU,572
|
|
497
504
|
agno/vectordb/chroma/__init__.py,sha256=xSNCyxrJJMd37Y9aNumn026ycHrMKxREgEg1zsnCm1c,82
|
|
498
|
-
agno/vectordb/chroma/chromadb.py,sha256=
|
|
505
|
+
agno/vectordb/chroma/chromadb.py,sha256=G4cvnu8Us5o3MPBJi5zkhpv8bQPZksXXOa_ZDrZhL3s,38071
|
|
499
506
|
agno/vectordb/clickhouse/__init__.py,sha256=pcmZRNBEpDznEEpl3NzMZgvVLo8tni3X0FY1G_WXAdc,214
|
|
500
|
-
agno/vectordb/clickhouse/clickhousedb.py,sha256=
|
|
507
|
+
agno/vectordb/clickhouse/clickhousedb.py,sha256=5Sy2UK5TniOfhr7Qk8ohoz8CTHwXP1UJqZOexXNNWT0,31448
|
|
501
508
|
agno/vectordb/clickhouse/index.py,sha256=_YW-8AuEYy5kzOHi0zIzjngpQPgJOBdSrn9BfEL4LZU,256
|
|
502
509
|
agno/vectordb/couchbase/__init__.py,sha256=dKZkcQLFN4r2_NIdXby4inzAAn4BDMlb9T2BW_i0_gQ,93
|
|
503
|
-
agno/vectordb/couchbase/couchbase.py,sha256=
|
|
510
|
+
agno/vectordb/couchbase/couchbase.py,sha256=hEJWNc5ckw3UwF1NY5jclVge6LinWqE5ga7TrZ945GI,65012
|
|
504
511
|
agno/vectordb/lancedb/__init__.py,sha256=tb9qvinKyWMTLjJYMwW_lhYHFvrfWTfHODtBfMj-NLE,111
|
|
505
|
-
agno/vectordb/lancedb/lance_db.py,sha256=
|
|
512
|
+
agno/vectordb/lancedb/lance_db.py,sha256=4IOCb6ksYlJ3Jx_g621KsCmRQinBRwUpn3PqGoWZ4oI,43013
|
|
506
513
|
agno/vectordb/langchaindb/__init__.py,sha256=BxGs6tcEKTiydbVJL3P5djlnafS5Bbgql3u1k6vhW2w,108
|
|
507
|
-
agno/vectordb/langchaindb/langchaindb.py,sha256=
|
|
514
|
+
agno/vectordb/langchaindb/langchaindb.py,sha256=3ZykMsE5oBpnrW8sQqpikAx7y9VtEvUkRoCPfmQPeqA,6038
|
|
508
515
|
agno/vectordb/lightrag/__init__.py,sha256=fgQpA8pZW-jEHI91SZ_xgmROmv14oKdwCQZ8LpyipaE,84
|
|
509
|
-
agno/vectordb/lightrag/lightrag.py,sha256=
|
|
516
|
+
agno/vectordb/lightrag/lightrag.py,sha256=T1qqiEvZfxpcg6LEYteHozAJ2dQfLdHQCjTsHc0TW7g,14774
|
|
510
517
|
agno/vectordb/llamaindex/__init__.py,sha256=fgdWIntUOX3n5YEPcPfr-yPb2kvmSy5ngQ5_UqAIrgM,103
|
|
511
|
-
agno/vectordb/llamaindex/llamaindexdb.py,sha256=
|
|
518
|
+
agno/vectordb/llamaindex/llamaindexdb.py,sha256=S9puyPoWHXrAuXqvHDtssUYPO65qgOih4_61QJaHj_k,5865
|
|
512
519
|
agno/vectordb/milvus/__init__.py,sha256=I9V-Rm-rIYxWdRVIs6bKI-6JSJsyOd1-vvasvVpYHuE,127
|
|
513
|
-
agno/vectordb/milvus/milvus.py,sha256=
|
|
520
|
+
agno/vectordb/milvus/milvus.py,sha256=2TRZTQ8wJet2-2JHHT-mTB-Md3b5O_tAsp24d8lA7m8,47104
|
|
514
521
|
agno/vectordb/mongodb/__init__.py,sha256=yYwaWdxZRnFTd87Hfgs8_DO4QxcJxy1iL3__bnxP71I,73
|
|
515
|
-
agno/vectordb/mongodb/mongodb.py,sha256=
|
|
522
|
+
agno/vectordb/mongodb/mongodb.py,sha256=bry8CpJJae-GdoWCr4QPSVwxDI5VU8W6CG4dEWozIeY,60628
|
|
516
523
|
agno/vectordb/pgvector/__init__.py,sha256=Lui0HBzoHPIsKh5QuiT0eyTvYW88nQPfd_723jjHFCk,288
|
|
517
524
|
agno/vectordb/pgvector/index.py,sha256=qfGgPP33SwZkXLfUcAC_XgQsyZIyggpGS2bfIkjjs-E,495
|
|
518
|
-
agno/vectordb/pgvector/pgvector.py,sha256=
|
|
525
|
+
agno/vectordb/pgvector/pgvector.py,sha256=YOk7KLqAc7cv7GX1GulfSna3l0ULMSTG2O4NLp8YWbA,58851
|
|
519
526
|
agno/vectordb/pineconedb/__init__.py,sha256=D7iThXtUCxNO0Nyjunv5Z91Jc1vHG1pgAFXthqD1I_w,92
|
|
520
|
-
agno/vectordb/pineconedb/pineconedb.py,sha256=
|
|
527
|
+
agno/vectordb/pineconedb/pineconedb.py,sha256=XYPkxwvPVDCzRyD3UbA7_jbEMgvTBFkiSEEfYCBg77c,29337
|
|
521
528
|
agno/vectordb/qdrant/__init__.py,sha256=x1ReQt79f9aI_T4JUWb36KNFnvdd-kVwZ1sLsU4sW7Q,76
|
|
522
|
-
agno/vectordb/qdrant/qdrant.py,sha256=
|
|
529
|
+
agno/vectordb/qdrant/qdrant.py,sha256=c-wF44hGMsBf-_c9DRdpPijR6_U-mv-ROgFoyOC3sV4,46922
|
|
523
530
|
agno/vectordb/singlestore/__init__.py,sha256=Cuaq_pvpX5jsUv3tWlOFnlrF4VGykGIIK5hfhnW6J2k,249
|
|
524
531
|
agno/vectordb/singlestore/index.py,sha256=p9LYQlVINlZZvZORfiDE3AIFinx07idDHr9_mM3EXAg,1527
|
|
525
|
-
agno/vectordb/singlestore/singlestore.py,sha256=
|
|
532
|
+
agno/vectordb/singlestore/singlestore.py,sha256=WFP8rvE3azf2QsXicQTibZ7Omcy2XWgJ_OVOUJJR4mA,30708
|
|
526
533
|
agno/vectordb/surrealdb/__init__.py,sha256=4GIpJZH0Hb42s1ZR0VS5BQ5RhTAaolmS-_rAIYn9poM,81
|
|
527
|
-
agno/vectordb/surrealdb/surrealdb.py,sha256=
|
|
534
|
+
agno/vectordb/surrealdb/surrealdb.py,sha256=V8fZXW8jvrNZ0oWP7ag2Hlu-MY6Oa4L858cKVEvM7FM,25428
|
|
528
535
|
agno/vectordb/upstashdb/__init__.py,sha256=set3Sx1F3ZCw0--0AeC036EAS0cC1xKsvQUK5FyloFA,100
|
|
529
|
-
agno/vectordb/upstashdb/upstashdb.py,sha256=
|
|
536
|
+
agno/vectordb/upstashdb/upstashdb.py,sha256=ggFcNzQ1X47zWPGM6OhUdvOuG0A8JmrhkAkX7q2opD4,29030
|
|
530
537
|
agno/vectordb/weaviate/__init__.py,sha256=FIoFJgqSmGuFgpvmsg8EjAn8FDAhuqAXed7fjaW4exY,182
|
|
531
538
|
agno/vectordb/weaviate/index.py,sha256=y4XYPRZFksMfrrF85B4hn5AtmXM4SH--4CyLo27EHgM,253
|
|
532
|
-
agno/vectordb/weaviate/weaviate.py,sha256=
|
|
539
|
+
agno/vectordb/weaviate/weaviate.py,sha256=8KNa5a-RuksE6w9poD4vi_ixUBeoB96PkzCL9DHSs5o,39406
|
|
533
540
|
agno/workflow/__init__.py,sha256=lwavZXIkgqajbSf1jMqzE7kbXBIFmk5niI_NgpVI-gA,542
|
|
534
|
-
agno/workflow/condition.py,sha256=
|
|
535
|
-
agno/workflow/loop.py,sha256=
|
|
536
|
-
agno/workflow/parallel.py,sha256=
|
|
537
|
-
agno/workflow/router.py,sha256
|
|
538
|
-
agno/workflow/step.py,sha256=
|
|
539
|
-
agno/workflow/steps.py,sha256=
|
|
540
|
-
agno/workflow/types.py,sha256=
|
|
541
|
-
agno/workflow/workflow.py,sha256=
|
|
542
|
-
agno-2.1.
|
|
543
|
-
agno-2.1.
|
|
544
|
-
agno-2.1.
|
|
545
|
-
agno-2.1.
|
|
546
|
-
agno-2.1.
|
|
541
|
+
agno/workflow/condition.py,sha256=MgJnHRPEJ2qCjUkcHKyZfOuAn-C38ZTgVcYjY8iTgrI,30122
|
|
542
|
+
agno/workflow/loop.py,sha256=q2XssC179htRC7KPiebUcvr0lKexfZUB9aUO4D3tOrk,32305
|
|
543
|
+
agno/workflow/parallel.py,sha256=Gb6XZbwDJgmBBbuiZTFHvphQqrsMVgM-HTOMoiIHweg,34843
|
|
544
|
+
agno/workflow/router.py,sha256=-gPT43a1mP0tnE6wQa4tEAuGWNppel8DbmCg0ajo-L0,28295
|
|
545
|
+
agno/workflow/step.py,sha256=VIAm6SQYANva2ppYZPcDjr_nP4iGQSuOOt-0mq3FABk,58497
|
|
546
|
+
agno/workflow/steps.py,sha256=1qOcH0SuPTPE0Ac3sRyRLjFoMcKyTo44hlJXdbOBNnM,25389
|
|
547
|
+
agno/workflow/types.py,sha256=DutB4UkEppJoWRiNaGEnPk6xFNpg0oCBwOb7VJ8T_xE,18646
|
|
548
|
+
agno/workflow/workflow.py,sha256=AD2mKXap840IwPb2WMnVJM30lQLAFUfWxd7nqQJ52hU,137906
|
|
549
|
+
agno-2.1.5.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
550
|
+
agno-2.1.5.dist-info/METADATA,sha256=hdT3NEhb3E4c67BIzIPPA9U0xqpyqENrfYxRtizglwI,24504
|
|
551
|
+
agno-2.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
552
|
+
agno-2.1.5.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
553
|
+
agno-2.1.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|