agno 2.1.4__py3-none-any.whl → 2.1.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 +1775 -538
- 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 +43 -13
- agno/db/mongo/mongo.py +14 -6
- agno/db/mongo/utils.py +0 -4
- agno/db/mysql/mysql.py +23 -13
- agno/db/postgres/postgres.py +17 -6
- agno/db/redis/redis.py +2 -2
- agno/db/singlestore/singlestore.py +19 -10
- agno/db/sqlite/sqlite.py +22 -12
- agno/db/sqlite/utils.py +8 -3
- agno/db/surrealdb/__init__.py +3 -0
- agno/db/surrealdb/metrics.py +292 -0
- agno/db/surrealdb/models.py +259 -0
- agno/db/surrealdb/queries.py +71 -0
- agno/db/surrealdb/surrealdb.py +1193 -0
- agno/db/surrealdb/utils.py +87 -0
- 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 +254 -46
- 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 +64 -11
- 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 +968 -179
- 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 -2
- 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 +30 -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.6.dist-info}/METADATA +100 -41
- {agno-2.1.4.dist-info → agno-2.1.6.dist-info}/RECORD +95 -82
- {agno-2.1.4.dist-info → agno-2.1.6.dist-info}/WHEEL +0 -0
- {agno-2.1.4.dist-info → agno-2.1.6.dist-info}/licenses/LICENSE +0 -0
- {agno-2.1.4.dist-info → agno-2.1.6.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.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
|
|
@@ -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=SWsIFkDNdNEHynJu5MepO2gqlJnh_yFDN1tn7DT-TgI,403708
|
|
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=gj8deaEWUxOr0qJyMfjOpV3LxEh-otOSOxDckeUq0qU,24938
|
|
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=PjUEFjiOI0HywlDxj8DF1jhsv9-hejjJoiclpwMGkWk,68548
|
|
54
58
|
agno/db/mongo/schemas.py,sha256=MAhfwx7_zxKucnZpgq_YSZANaF5MqiZ6qDByhdIREk8,2054
|
|
55
|
-
agno/db/mongo/utils.py,sha256=
|
|
59
|
+
agno/db/mongo/utils.py,sha256=D173PoWr6CF9QeLpXOuENIM8rzK8d__Kj3fJIPwMEW8,6902
|
|
56
60
|
agno/db/mysql/__init__.py,sha256=ohBMZ1E6ctioEF0XX5PjC4LtUQrc6lFkjsE4ojyXA8g,63
|
|
57
|
-
agno/db/mysql/mysql.py,sha256=
|
|
61
|
+
agno/db/mysql/mysql.py,sha256=kP2XlzodZgWeQdyP6kDnla72d0U_r5uXgjA7X_neXhk,86151
|
|
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=bnz-FG-x_mNwlvCHtrZcdbtGeKLJskj1mavpPZoY6jY,82101
|
|
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,23 @@ 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=YlugM8NEVLClL2tcpplIv2crwpdGc-jiqtzxxK87AGs,84072
|
|
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=zhCY_bOsKfH5dAsi2FJGGjnSW4SiupywZplSj7DqAsc,84074
|
|
84
|
+
agno/db/sqlite/utils.py,sha256=DgG9G2g37ry9KscNOdi5AC8DYlSEbIAlRI0qGMfTyIs,9637
|
|
85
|
+
agno/db/surrealdb/__init__.py,sha256=C8qp5-Nx9YnSmgKEtGua-sqG_ntCXONBw1qqnNyKPqI,75
|
|
86
|
+
agno/db/surrealdb/metrics.py,sha256=oKDRyjRQ6KR3HaO8zDHQLVMG7-0NDkOFOKX5I7mD5FA,10336
|
|
87
|
+
agno/db/surrealdb/models.py,sha256=tFQMiVp4FH0WSHI6Co5TLTa76oUB8fTnpRG5eFUQslc,9507
|
|
88
|
+
agno/db/surrealdb/queries.py,sha256=s__yJSFIx387IEflcDdti7T5j6H9NX_-zIj13F9CN9s,2051
|
|
89
|
+
agno/db/surrealdb/surrealdb.py,sha256=uUySaUstsmejAwz5lrAWiMXC5KO8k2TO1lypj63HDu4,46095
|
|
90
|
+
agno/db/surrealdb/utils.py,sha256=CtgL48uFXsh-tQgWHtakH78QT4Z9LZTrhP15C6oIJds,3160
|
|
81
91
|
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=
|
|
92
|
+
agno/eval/accuracy.py,sha256=vfJ9Kx33YGsXenNKVHPK5h0IeB2tZMlfSKu6OA-mj9g,33065
|
|
93
|
+
agno/eval/performance.py,sha256=b4BuSlGkraym9EQick4KraA1OyMa0U7LMjoFozpNbIs,30528
|
|
94
|
+
agno/eval/reliability.py,sha256=AlD36eOh8_k06C_WU74X3klNvLtz1F56TQS6CPBUt6g,12422
|
|
95
|
+
agno/eval/utils.py,sha256=uu7ssj9kjO02m0R61ty3Zqwz4JXHt4tOPySPBhnMqjM,3869
|
|
86
96
|
agno/guardrails/__init__.py,sha256=fbKru05VuZN0Am_T_AB7YyEk-7EEwgI_obTXxQjFLr0,343
|
|
87
97
|
agno/guardrails/base.py,sha256=Izpf0R684BR_9Y8zJa3KoGLQ5naB96wrzlTxjN6ILvc,555
|
|
88
98
|
agno/guardrails/openai.py,sha256=MjNqIXL5UkPkEMX2bW7FdpfkQm7QlrXdh-fvGImT_P0,5860
|
|
@@ -93,7 +103,7 @@ agno/integrations/discord/__init__.py,sha256=MS08QSnegGgpDZd9LyLjK4pWIk9dXlbzgD7
|
|
|
93
103
|
agno/integrations/discord/client.py,sha256=2IWkA-kCDsDXByKOGq2QJG6MtFsbouzNN105rsXn95A,8375
|
|
94
104
|
agno/knowledge/__init__.py,sha256=PJCt-AGKGFztzR--Ok2TNKW5QEqllZzqiI_7f8-1u80,79
|
|
95
105
|
agno/knowledge/content.py,sha256=q2bjcjDhfge_UrQAcygrv5R9ZTk7vozzKnQpatDQWRo,2295
|
|
96
|
-
agno/knowledge/knowledge.py,sha256=
|
|
106
|
+
agno/knowledge/knowledge.py,sha256=LnBQ-feIaaHwusgBMGWvXzj4_hiZBCg-ZglfkBYE6nA,77963
|
|
97
107
|
agno/knowledge/types.py,sha256=ciwDLK9MXwi_W_g4nUChEmK6meDQyqTqGK2Ad-wM1os,754
|
|
98
108
|
agno/knowledge/utils.py,sha256=_uhEFtz4p7-cIKffdj5UZ__c-u96rs2UWP6dv5HpOMk,6490
|
|
99
109
|
agno/knowledge/chunking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -134,8 +144,8 @@ agno/knowledge/reader/field_labeled_csv_reader.py,sha256=ECcg9Fr0DtxKiAF0bLRwTIx
|
|
|
134
144
|
agno/knowledge/reader/firecrawl_reader.py,sha256=SCbcRLkMrUb2WiC6SPuAoZULtHITa2VAmBtZlGmamGM,6855
|
|
135
145
|
agno/knowledge/reader/json_reader.py,sha256=KfDgHno_XHORIGaoA1Q2Y5M7nkcTFM9IUzWXkjVjYKQ,3245
|
|
136
146
|
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=
|
|
147
|
+
agno/knowledge/reader/pdf_reader.py,sha256=F1Zx5i5jTUbuuKEPEnlnzMgCAweJMehYY0igRFHuHf4,17206
|
|
148
|
+
agno/knowledge/reader/reader_factory.py,sha256=4rQ2MbdCdDOquFJWMi_o0eYzxsaGSTDcu6dQez1LHGs,10275
|
|
139
149
|
agno/knowledge/reader/s3_reader.py,sha256=j_xBDWV9l5Uhsr88glQ0dCMS-ijvqw8gdMc1Bzfm394,3547
|
|
140
150
|
agno/knowledge/reader/text_reader.py,sha256=Vkk3mWhjyazPv77Z9PGO1nRVk8cmVkUFIWZFCVqTkOI,4444
|
|
141
151
|
agno/knowledge/reader/web_search_reader.py,sha256=GMc59AxwS1zTyBEmnwzJCEbPmK4ut1eWy8EV5XXTRSk,14585
|
|
@@ -150,7 +160,7 @@ agno/knowledge/reranker/cohere.py,sha256=2Be5blVyeZ3vYlnFa2NYvJuytjaCB8G2OWJ11pQ
|
|
|
150
160
|
agno/knowledge/reranker/infinity.py,sha256=N9geg9xZqRdJZksfQcvbGJgMymXrQVJl_K5KICWqH8o,7193
|
|
151
161
|
agno/knowledge/reranker/sentence_transformer.py,sha256=ZN4SqnMZsUhg5G7AzlONM1_UjezfNrjFYXpNVHD4U-U,1912
|
|
152
162
|
agno/memory/__init__.py,sha256=XWKJU5SJObYZqEKMZ2XYwgH8-YeuWUoSRfT4dEI5HnY,101
|
|
153
|
-
agno/memory/manager.py,sha256=
|
|
163
|
+
agno/memory/manager.py,sha256=jq8buSqZ8r61LcQtvbO1RD7a_FylYbAJMGj_3Yopr7o,51153
|
|
154
164
|
agno/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
165
|
agno/models/base.py,sha256=bjP0Xt5-Jlk1I_7wHmuv8lhUPE75WzZ_iF3U-d81TUI,85214
|
|
156
166
|
agno/models/defaults.py,sha256=1_fe4-ZbNriE8BgqxVRVi4KGzEYxYKYsz4hn6CZNEEM,40
|
|
@@ -161,7 +171,7 @@ agno/models/utils.py,sha256=PprNlVI8d8loHayjRsrc4TL38sfkFMS3EVZcF5cLXoA,669
|
|
|
161
171
|
agno/models/aimlapi/__init__.py,sha256=XQcFRvt4qJ8ol9nCC0XKEkVEDivdNf3nZNoJZMZ5m8M,78
|
|
162
172
|
agno/models/aimlapi/aimlapi.py,sha256=9Qh-b8HvFSvmPP3VBNGT00qy9izHLMWgR-KDQCE5CM0,1493
|
|
163
173
|
agno/models/anthropic/__init__.py,sha256=nbReX3p17JCwfrMDR9hR7-OaEFZm80I7dng93dl-Fhw,77
|
|
164
|
-
agno/models/anthropic/claude.py,sha256=
|
|
174
|
+
agno/models/anthropic/claude.py,sha256=03JQsLVHeutcWn5btUsqFNy4im2XAumGD9gOvei5bN0,28131
|
|
165
175
|
agno/models/aws/__init__.py,sha256=TbcwQwv9A7KjqBM5RQBR8x46GvyyCxbBCjwkpjfVGKE,352
|
|
166
176
|
agno/models/aws/bedrock.py,sha256=ScZcGwOMh-N0DfArXtDVzKy467QPAN0OS8llBNAc8cQ,28880
|
|
167
177
|
agno/models/aws/claude.py,sha256=sL47z9fM3jxGbARkr0mlAVYEKKX854J3u-Qeb5gIADo,14746
|
|
@@ -242,26 +252,26 @@ agno/models/vllm/vllm.py,sha256=UtiiSvUR4pG_1CzuhY5MWduRgzM2hGVTakKJ6ZBdQmo,2730
|
|
|
242
252
|
agno/models/xai/__init__.py,sha256=ukcCxnCHxTtkJNA2bAMTX4MhCv1wJcbiq8ZIfYczIxs,55
|
|
243
253
|
agno/models/xai/xai.py,sha256=jA6_39tfapkjkHKdzbKaNq1t9qIvO1IaZY1hQqEmFVs,4181
|
|
244
254
|
agno/os/__init__.py,sha256=h8oQu7vhD5RZf09jkyM_Kt1Kdq_d5kFB9gJju8QPwcY,55
|
|
245
|
-
agno/os/app.py,sha256=
|
|
255
|
+
agno/os/app.py,sha256=tkMf3zl1cVtx_UMc8hhAXYm78xWCxpdaDB4xmTKqIeM,26723
|
|
246
256
|
agno/os/auth.py,sha256=FyBtAKWtg-qSunCas5m5pK1dVEmikOSZvcCp5r25tTA,1844
|
|
247
257
|
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=
|
|
258
|
+
agno/os/mcp.py,sha256=vJhjjSm1KC61HLoxPj24lSrjkjo7plkoFfcQX2BmTp0,10253
|
|
259
|
+
agno/os/router.py,sha256=eRxyRX9FjgxtaYwrtNCJLiWH2m6gx6L5zYCff1Gv1ew,71106
|
|
260
|
+
agno/os/schema.py,sha256=Jlm-vM79iyj-cytWkyKFC4BN4kQV-IaiDqTujvdRzEk,39895
|
|
251
261
|
agno/os/settings.py,sha256=Cn5_8lZI8Vx1UaUYqs9h6Qp4IMDFn4f3c35uppiaMy4,1343
|
|
252
|
-
agno/os/utils.py,sha256=
|
|
262
|
+
agno/os/utils.py,sha256=V6PqoPaUbj1O6O2_vvLZAmKalInh5_Nn3twdYxF5XB0,19996
|
|
253
263
|
agno/os/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
254
264
|
agno/os/interfaces/base.py,sha256=vXkr1tRjWHTcmBlQFzvQjqURLhObmFtUAx82uij_j48,542
|
|
255
265
|
agno/os/interfaces/a2a/__init__.py,sha256=Fs7--dx9drvtVS9QjsCCm0P7c-hJ7TzU8gNwKTQsZDA,62
|
|
256
266
|
agno/os/interfaces/a2a/a2a.py,sha256=UiTX-GOuXxp1CQzRgtmgSSYNn2iFC_vKYnC37OidygM,1337
|
|
257
|
-
agno/os/interfaces/a2a/router.py,sha256=
|
|
267
|
+
agno/os/interfaces/a2a/router.py,sha256=p3UlrgYhx5SnudOh6PQh3Mx8qLbd6an-FW_fZfVcaP8,11009
|
|
258
268
|
agno/os/interfaces/a2a/utils.py,sha256=rTn9x0UGbX53EiAsljf87PmzYwLuvqaobUWpCn35ut0,39285
|
|
259
269
|
agno/os/interfaces/agui/__init__.py,sha256=1zrGICk4roXUINwSFZfqH6sBsbHmD5KjGYVJMGg4fKQ,66
|
|
260
270
|
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=
|
|
271
|
+
agno/os/interfaces/agui/router.py,sha256=fKBxLl8oG8QK6Dq6w9G5OhfX1FaHsWHelxHy4WlRAf0,4876
|
|
272
|
+
agno/os/interfaces/agui/utils.py,sha256=d97r8EJ9GZ3TwmI53ZcOTy4ICHiFX3s6WY75UnsolyQ,20162
|
|
263
273
|
agno/os/interfaces/slack/__init__.py,sha256=F095kOcgiyk_KzIozNNieKwpVc_NR8HYpuO4bKiCNN0,70
|
|
264
|
-
agno/os/interfaces/slack/router.py,sha256=
|
|
274
|
+
agno/os/interfaces/slack/router.py,sha256=KVR6jerRnjw6hRLDs3NR8ScIJx2MDACcVOAyQyJEm6A,5466
|
|
265
275
|
agno/os/interfaces/slack/security.py,sha256=nMbW_0g-G_DEMbCQOD8C3PYrRPIpB2cyM6P-xS6GHYk,917
|
|
266
276
|
agno/os/interfaces/slack/slack.py,sha256=3fYuaWVA0qu435U4EBc9QrIYp96277TyD4awQqxK-os,1153
|
|
267
277
|
agno/os/interfaces/whatsapp/__init__.py,sha256=-sD2W00qj8hrx72ATVMtaDc7GfAsaCQJMlnRjYPwisg,82
|
|
@@ -274,29 +284,32 @@ agno/os/routers/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,9
|
|
|
274
284
|
agno/os/routers/health.py,sha256=MpJrg488T0m8jU0mtoBNPiLhlR2r2gFihvyZwdQh_oc,725
|
|
275
285
|
agno/os/routers/home.py,sha256=xe8DYJkRgad55qiza0lHt8pUIV5PLSyu2MkybjuPDDE,1708
|
|
276
286
|
agno/os/routers/evals/__init__.py,sha256=3s0M-Ftg5A3rFyRfTATs-0aNA6wcbj_5tCvtwH9gORQ,87
|
|
277
|
-
agno/os/routers/evals/evals.py,sha256=
|
|
287
|
+
agno/os/routers/evals/evals.py,sha256=oA6KpeIjlclMAXn1XkpJ147SvJZxr3AhsX__5fl9dX4,18266
|
|
278
288
|
agno/os/routers/evals/schemas.py,sha256=3Ebm3IrpX22Hg3ZatMRkozgS4TfnMki4_UbqCNtQvJ4,4800
|
|
279
|
-
agno/os/routers/evals/utils.py,sha256=
|
|
289
|
+
agno/os/routers/evals/utils.py,sha256=Zi5f2hWqcDrcZ3f3MfC1Sx9_NUYz7rzIt8D-FrluwhM,5538
|
|
280
290
|
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=
|
|
291
|
+
agno/os/routers/knowledge/knowledge.py,sha256=9MaMzPjSlsRioms9_J_Nso1hkAMMfx0h6Yql4cPUMZY,43841
|
|
292
|
+
agno/os/routers/knowledge/schemas.py,sha256=T8bbzi6dbUxNUT8_oStSfOua6I7c9AGh4qy6TTP4oPI,6694
|
|
283
293
|
agno/os/routers/memory/__init__.py,sha256=9hrYFc1dkbsLBqKfqyfioQeLX9TTbLrJx6lWDKNNWbc,93
|
|
284
|
-
agno/os/routers/memory/memory.py,sha256=
|
|
294
|
+
agno/os/routers/memory/memory.py,sha256=1by03MSaE0ysd4DaUVHxAs3lslL4gql9_HSFfMoJmiQ,20432
|
|
285
295
|
agno/os/routers/memory/schemas.py,sha256=yhQUF5m_y5bJQj1N4mKesUG3xmpE2TyZqF92LNqzm1w,1701
|
|
286
296
|
agno/os/routers/metrics/__init__.py,sha256=Uw6wWEikLpF5hHxBkHtFyaTuz7OUerGYWk0JW7teUGQ,97
|
|
287
|
-
agno/os/routers/metrics/metrics.py,sha256=
|
|
297
|
+
agno/os/routers/metrics/metrics.py,sha256=X0BUBLqX5YKOPVjS2J7SvOYgX1iq7sZjpIYO-gSOBY0,8485
|
|
288
298
|
agno/os/routers/metrics/schemas.py,sha256=E7F31CXg9_JiBqeNZWFsZCraShqEHIDD8pDfS4E2oco,1633
|
|
289
299
|
agno/os/routers/session/__init__.py,sha256=du4LO9aZwiY1t59VcV9M6wiAfftFFlUZc-YXsTGy9LI,97
|
|
290
|
-
agno/os/routers/session/session.py,sha256=
|
|
300
|
+
agno/os/routers/session/session.py,sha256=an63SLl9atM8Bdu-iy27z3b_NZDCKeEcNAZ0OqCEJxs,34090
|
|
291
301
|
agno/reasoning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
+
agno/reasoning/anthropic.py,sha256=RRGINflEXuY5kkUbC8_1ztTVY708YaUm3dEqSW7twcI,3130
|
|
292
303
|
agno/reasoning/azure_ai_foundry.py,sha256=VL7DmFpuYMf_gLFAZ9kUCS7Zb3pNhDaEingRZcyUdQY,2594
|
|
293
304
|
agno/reasoning/deepseek.py,sha256=Xj_QkaN9ivbtD_IMojd_hlLBijdnyi8fQd3Iz1k9-hQ,2231
|
|
294
305
|
agno/reasoning/default.py,sha256=KFOhfgz9ERICRpKakow60SYIRlF7LIrM7fp0TLHma4w,5318
|
|
306
|
+
agno/reasoning/gemini.py,sha256=c1efsxn_NCyCri0UCZmyrOl77KDeVcSnpY2pu-QIDqc,2798
|
|
295
307
|
agno/reasoning/groq.py,sha256=1rV_-RTy924U3uTshN7fja1E4fiCbx8HYGxuWGjGGcQ,2638
|
|
296
308
|
agno/reasoning/helpers.py,sha256=77gce_FQDGGVwM1-j5Zc_ds5FRZy9l7EcH2cp0WkJrI,2153
|
|
297
309
|
agno/reasoning/ollama.py,sha256=hJPmpBD07W6SOphkg-EifLYqosM330fxv-SbeEhoG74,2558
|
|
298
|
-
agno/reasoning/openai.py,sha256=
|
|
310
|
+
agno/reasoning/openai.py,sha256=JYk-mR9cMf1ibprX3MdL8oeCEDyQ3XaJw9PAIYvWeGk,3234
|
|
299
311
|
agno/reasoning/step.py,sha256=6DaOb_0DJRz9Yh1w_mxcRaOSVzIQDrj3lQ6rzHLdIwA,1220
|
|
312
|
+
agno/reasoning/vertexai.py,sha256=O9ntvalkIY2jLmWviEH1DnecMskqTL-mRZQBZohoHiU,2974
|
|
300
313
|
agno/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
314
|
agno/run/agent.py,sha256=JaQf4cDTwH6hRJdlhgnbOxnJUT8yry7cLRo1PX0u-OE,23899
|
|
302
315
|
agno/run/base.py,sha256=x37ecdhKdb3dbW23d8t2JPBZwrwIC93lRvT1-76CK0c,7059
|
|
@@ -308,9 +321,9 @@ agno/session/__init__.py,sha256=p6eqzWcLSHiMex2yZvkwv2yrFUNdGs21TGMS49xrEC4,376
|
|
|
308
321
|
agno/session/agent.py,sha256=vut3IwCivUu0vvuht_1c3rUhW61NZee6whxDQUsEkUM,9756
|
|
309
322
|
agno/session/summary.py,sha256=THBbzE48V81p4dKUX2W8OvbpsNO5dI6BdtqDyjfcVqw,8433
|
|
310
323
|
agno/session/team.py,sha256=0lS-9ljtG17iyC0n8sq_7aEy9MZsdfMf8VgObqJ_3tg,10384
|
|
311
|
-
agno/session/workflow.py,sha256
|
|
324
|
+
agno/session/workflow.py,sha256=tluE_3ERMBYJtffpwlrhdETWlzJk6Xw2x06FZ1Y3fXg,7397
|
|
312
325
|
agno/team/__init__.py,sha256=toHidBOo5M3n_TIVtIKHgcDbLL9HR-_U-YQYuIt_XtE,847
|
|
313
|
-
agno/team/team.py,sha256=
|
|
326
|
+
agno/team/team.py,sha256=BUZiXYF5mJoMHDW5SRPGwaTv54_cIusWLpZ-WdjX9Tg,374472
|
|
314
327
|
agno/tools/__init__.py,sha256=jNll2sELhPPbqm5nPeT4_uyzRO2_KRTW-8Or60kioS0,210
|
|
315
328
|
agno/tools/agentql.py,sha256=S82Z9aTNr-E5wnA4fbFs76COljJtiQIjf2grjz3CkHU,4104
|
|
316
329
|
agno/tools/airflow.py,sha256=uf2rOzZpSU64l_qRJ5Raku-R3Gky-uewmYkh6W0-oxg,2610
|
|
@@ -359,7 +372,7 @@ agno/tools/google_drive.py,sha256=dxGr_NhMsqFsr_tR3w4MgLXm7_nlCTI43sCmKw60N_4,11
|
|
|
359
372
|
agno/tools/google_maps.py,sha256=AqPEIt4u6B2kQtzOnL5PH3RXoefCfjT_Uvm3coAqzaY,9513
|
|
360
373
|
agno/tools/googlecalendar.py,sha256=s8BPKvDZGeLD2idlQG-vqDqVpza6PupF5AzAElnAK_M,27457
|
|
361
374
|
agno/tools/googlesearch.py,sha256=xRuaEqn7N6JIQC6z9jFuA0Kdtoe5MafGqRMtZ8jW2AQ,3566
|
|
362
|
-
agno/tools/googlesheets.py,sha256=
|
|
375
|
+
agno/tools/googlesheets.py,sha256=m8K0A8I5d68HG19OajDLCgGJzXnsnh33OQQOc6K5Qbg,15704
|
|
363
376
|
agno/tools/hackernews.py,sha256=h5w-L5FkGGMAHr6Jjez6164-UYZ_2r2qFAzwMrKLdRM,2776
|
|
364
377
|
agno/tools/jina.py,sha256=xa0yxcxsSZ1-BzxO3PJKNWnWrv64DxbpvRHTPFXWhC4,4036
|
|
365
378
|
agno/tools/jira.py,sha256=O8oBtAXGTzlLSjNHNs290B8Bo0nrJ45NRYzsR1KupNk,5907
|
|
@@ -369,7 +382,7 @@ agno/tools/linkup.py,sha256=EzX4_ARW96DkFe1IXAFlPQI5rdhhdhmNTX1tB5IVFWs,2123
|
|
|
369
382
|
agno/tools/local_file_system.py,sha256=wWyhM5-lqDgDO_YNzRA8ekG-m2n89k8fWr8M1BWiQWo,3157
|
|
370
383
|
agno/tools/lumalab.py,sha256=6WnZXbThKY2jL9zLswq1PVsbFm2jz81qshWqBZi59oo,6808
|
|
371
384
|
agno/tools/mcp.py,sha256=xsKZ1EY3-DmHlDPeWTlVBCJv5DKkTKX_KZvmC1o8M-w,27765
|
|
372
|
-
agno/tools/mcp_toolbox.py,sha256=
|
|
385
|
+
agno/tools/mcp_toolbox.py,sha256=z6qZqUOmYueBoiQtTqRWV9GohhCAd3s5D4GyqtezHeY,12760
|
|
373
386
|
agno/tools/mem0.py,sha256=5W5pZwJmBTt-_l4nvBdNQHavXFSKV9mVdJg5aso4JBI,7680
|
|
374
387
|
agno/tools/memori.py,sha256=tubBYj0rQFbBXadhWxwTjjmb3Rnims536AVPkGdCMcw,13181
|
|
375
388
|
agno/tools/memory.py,sha256=vpMoKtCqs3m6vkuqmZ4fW9IRf1OhXHQGGaq3exJK0Xo,18449
|
|
@@ -392,7 +405,7 @@ agno/tools/reasoning.py,sha256=5k2D89s0mAqJGo5AVBM6XDvJHjfun3GqollhVkZ6rxk,12581
|
|
|
392
405
|
agno/tools/reddit.py,sha256=F6lUJFAoQmuZMqppauMteF1BprDj8mpu-lVd1reUJTk,18632
|
|
393
406
|
agno/tools/replicate.py,sha256=xVh6F2OCjIuCT8qt_ryzHb46ZctQ3_9bQhXQ5-HrzYQ,4459
|
|
394
407
|
agno/tools/resend.py,sha256=TKsb5W_Yj0SaVBFL2ySACkehIW6bPnQ9GzYwldfordo,1990
|
|
395
|
-
agno/tools/scrapegraph.py,sha256=
|
|
408
|
+
agno/tools/scrapegraph.py,sha256=j72ZfoITjqcRgGUesgHZddwt9kj1dS1KGyLKI0EFbHE,8328
|
|
396
409
|
agno/tools/searxng.py,sha256=t041lAuCIAREU6I13SvNwh3B27m62c_0mfiB3_bx9vw,4970
|
|
397
410
|
agno/tools/serpapi.py,sha256=3jTBH93OiN7LvS7zJt4xOhkNsNd_SADHLKzQKDckh2s,3925
|
|
398
411
|
agno/tools/serper.py,sha256=3UfqCgJLjQopomy_7JDWHN6WOyOYKlTr1bOpw1vd934,9069
|
|
@@ -465,7 +478,7 @@ agno/utils/response_iterator.py,sha256=MgtadrOuMcw2vJcVvhJdMKRzpVddhLWUIkGFbBz7Z
|
|
|
465
478
|
agno/utils/safe_formatter.py,sha256=zLrW6O-nGUZvXoDkZOTgVpjeUFTmMUj8pk3FLvW_XjM,809
|
|
466
479
|
agno/utils/serialize.py,sha256=XvQA_KSkVd5qI1QuZwdQpCsl1IOKddFu52Jl6WQASqU,904
|
|
467
480
|
agno/utils/shell.py,sha256=JaY14Fq3ulodG4SeSdLEoOZDI4JJlmCbdgwK5beJuc8,700
|
|
468
|
-
agno/utils/streamlit.py,sha256=
|
|
481
|
+
agno/utils/streamlit.py,sha256=IKKOkYGqlSvW0JKlWrI2393a4DmL4gW5rW-cnEhhTZ4,17993
|
|
469
482
|
agno/utils/string.py,sha256=iO1etmjHVxnPMTixAKlpR1vnBnRapYL2pm_cjhS06Ww,7557
|
|
470
483
|
agno/utils/team.py,sha256=VXdm41WhsC6Rb20fHcpO4H55obQ6R435luAAZ4Jc3yQ,1853
|
|
471
484
|
agno/utils/timer.py,sha256=Fuax69yh1cVIzCYMmJDB4HpTsPM8Iiq1VaTWz1vJtF8,1282
|
|
@@ -475,7 +488,7 @@ agno/utils/whatsapp.py,sha256=242VwGOdbgkxVeIj4D899mpT3GnG_IpcaKnd5qebhTA,9936
|
|
|
475
488
|
agno/utils/yaml_io.py,sha256=cwTqCE-eBGoi87KLDcwB6iyWe0NcvEmadQjWL1cQ7jE,860
|
|
476
489
|
agno/utils/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
490
|
agno/utils/models/ai_foundry.py,sha256=PmhETWhdqZCq8NbDe-MdZVuRXx6DbVOePCyPFiPLceo,1511
|
|
478
|
-
agno/utils/models/claude.py,sha256=
|
|
491
|
+
agno/utils/models/claude.py,sha256=kyg_CFJ3-AyzhrT0_r2KC2HwmmoGG-EOiTK0LQnqsA0,11356
|
|
479
492
|
agno/utils/models/cohere.py,sha256=wir2K9u4RmOwq7T7n_2UPZFHfwmnrt_u91Psd_DFqdE,3266
|
|
480
493
|
agno/utils/models/llama.py,sha256=Z5fdOFUFnov1JgUDcP6ICK3M7o64UB1fkcwAs2XaZkM,2515
|
|
481
494
|
agno/utils/models/mistral.py,sha256=SVcJ8Q8SFeadNwCr8BARbET0gvGiylmaDKzcSJ9kWq0,4189
|
|
@@ -487,60 +500,60 @@ agno/utils/print_response/agent.py,sha256=Er4YxWTMsSewC0Ckr0woabyOzT0XyLNzmXuIty
|
|
|
487
500
|
agno/utils/print_response/team.py,sha256=b1JzAS_oskX_0aw2Xw4JPtNLoOyWUBT_g2JToWhPT70,78659
|
|
488
501
|
agno/utils/print_response/workflow.py,sha256=OwSodeoUhWHBKWZlv2eObPl0brzV_LndFrPEHn518Lc,72083
|
|
489
502
|
agno/vectordb/__init__.py,sha256=P0QP9PUC4j2JtWIfYJX7LeC-oiPuh_QsUaOaP1ZY_dI,64
|
|
490
|
-
agno/vectordb/base.py,sha256=
|
|
503
|
+
agno/vectordb/base.py,sha256=Z5IN4kcO0privHOOI16z-G--PtjfnMrBNrsLx3umokM,3848
|
|
491
504
|
agno/vectordb/distance.py,sha256=OjpKSq57_gblZm4VGZTV7B7le45r_2-Fp1X4Hilx1M4,131
|
|
492
505
|
agno/vectordb/search.py,sha256=9lJjTm2nvykn3MeVg0stB1qDZb_q-S7GG1MMS9P12e8,121
|
|
493
506
|
agno/vectordb/cassandra/__init__.py,sha256=1N7lA9QDVWsCD5V5qvXjhACVDMWlq8f37hhNBWOcZA0,88
|
|
494
|
-
agno/vectordb/cassandra/cassandra.py,sha256=
|
|
507
|
+
agno/vectordb/cassandra/cassandra.py,sha256=9t8nIBUIKQaiUQO5YVruoDomgPlUWzJAX1i5wOSXYdY,20606
|
|
495
508
|
agno/vectordb/cassandra/extra_param_mixin.py,sha256=tCgHnXxuy3Ea4bhrBGkejz9kpgLyM_sUf3QfWcjqzLQ,315
|
|
496
509
|
agno/vectordb/cassandra/index.py,sha256=9Ea-AoAxCQf2xP-RoIwvujVdzpNBcm2Qgcs4O5D40cU,572
|
|
497
510
|
agno/vectordb/chroma/__init__.py,sha256=xSNCyxrJJMd37Y9aNumn026ycHrMKxREgEg1zsnCm1c,82
|
|
498
|
-
agno/vectordb/chroma/chromadb.py,sha256=
|
|
511
|
+
agno/vectordb/chroma/chromadb.py,sha256=G4cvnu8Us5o3MPBJi5zkhpv8bQPZksXXOa_ZDrZhL3s,38071
|
|
499
512
|
agno/vectordb/clickhouse/__init__.py,sha256=pcmZRNBEpDznEEpl3NzMZgvVLo8tni3X0FY1G_WXAdc,214
|
|
500
|
-
agno/vectordb/clickhouse/clickhousedb.py,sha256=
|
|
513
|
+
agno/vectordb/clickhouse/clickhousedb.py,sha256=5Sy2UK5TniOfhr7Qk8ohoz8CTHwXP1UJqZOexXNNWT0,31448
|
|
501
514
|
agno/vectordb/clickhouse/index.py,sha256=_YW-8AuEYy5kzOHi0zIzjngpQPgJOBdSrn9BfEL4LZU,256
|
|
502
515
|
agno/vectordb/couchbase/__init__.py,sha256=dKZkcQLFN4r2_NIdXby4inzAAn4BDMlb9T2BW_i0_gQ,93
|
|
503
|
-
agno/vectordb/couchbase/couchbase.py,sha256=
|
|
516
|
+
agno/vectordb/couchbase/couchbase.py,sha256=hEJWNc5ckw3UwF1NY5jclVge6LinWqE5ga7TrZ945GI,65012
|
|
504
517
|
agno/vectordb/lancedb/__init__.py,sha256=tb9qvinKyWMTLjJYMwW_lhYHFvrfWTfHODtBfMj-NLE,111
|
|
505
|
-
agno/vectordb/lancedb/lance_db.py,sha256=
|
|
518
|
+
agno/vectordb/lancedb/lance_db.py,sha256=4IOCb6ksYlJ3Jx_g621KsCmRQinBRwUpn3PqGoWZ4oI,43013
|
|
506
519
|
agno/vectordb/langchaindb/__init__.py,sha256=BxGs6tcEKTiydbVJL3P5djlnafS5Bbgql3u1k6vhW2w,108
|
|
507
|
-
agno/vectordb/langchaindb/langchaindb.py,sha256=
|
|
520
|
+
agno/vectordb/langchaindb/langchaindb.py,sha256=3ZykMsE5oBpnrW8sQqpikAx7y9VtEvUkRoCPfmQPeqA,6038
|
|
508
521
|
agno/vectordb/lightrag/__init__.py,sha256=fgQpA8pZW-jEHI91SZ_xgmROmv14oKdwCQZ8LpyipaE,84
|
|
509
|
-
agno/vectordb/lightrag/lightrag.py,sha256=
|
|
522
|
+
agno/vectordb/lightrag/lightrag.py,sha256=T1qqiEvZfxpcg6LEYteHozAJ2dQfLdHQCjTsHc0TW7g,14774
|
|
510
523
|
agno/vectordb/llamaindex/__init__.py,sha256=fgdWIntUOX3n5YEPcPfr-yPb2kvmSy5ngQ5_UqAIrgM,103
|
|
511
|
-
agno/vectordb/llamaindex/llamaindexdb.py,sha256=
|
|
524
|
+
agno/vectordb/llamaindex/llamaindexdb.py,sha256=S9puyPoWHXrAuXqvHDtssUYPO65qgOih4_61QJaHj_k,5865
|
|
512
525
|
agno/vectordb/milvus/__init__.py,sha256=I9V-Rm-rIYxWdRVIs6bKI-6JSJsyOd1-vvasvVpYHuE,127
|
|
513
|
-
agno/vectordb/milvus/milvus.py,sha256=
|
|
526
|
+
agno/vectordb/milvus/milvus.py,sha256=2TRZTQ8wJet2-2JHHT-mTB-Md3b5O_tAsp24d8lA7m8,47104
|
|
514
527
|
agno/vectordb/mongodb/__init__.py,sha256=yYwaWdxZRnFTd87Hfgs8_DO4QxcJxy1iL3__bnxP71I,73
|
|
515
|
-
agno/vectordb/mongodb/mongodb.py,sha256=
|
|
528
|
+
agno/vectordb/mongodb/mongodb.py,sha256=bry8CpJJae-GdoWCr4QPSVwxDI5VU8W6CG4dEWozIeY,60628
|
|
516
529
|
agno/vectordb/pgvector/__init__.py,sha256=Lui0HBzoHPIsKh5QuiT0eyTvYW88nQPfd_723jjHFCk,288
|
|
517
530
|
agno/vectordb/pgvector/index.py,sha256=qfGgPP33SwZkXLfUcAC_XgQsyZIyggpGS2bfIkjjs-E,495
|
|
518
|
-
agno/vectordb/pgvector/pgvector.py,sha256=
|
|
531
|
+
agno/vectordb/pgvector/pgvector.py,sha256=YOk7KLqAc7cv7GX1GulfSna3l0ULMSTG2O4NLp8YWbA,58851
|
|
519
532
|
agno/vectordb/pineconedb/__init__.py,sha256=D7iThXtUCxNO0Nyjunv5Z91Jc1vHG1pgAFXthqD1I_w,92
|
|
520
|
-
agno/vectordb/pineconedb/pineconedb.py,sha256=
|
|
533
|
+
agno/vectordb/pineconedb/pineconedb.py,sha256=XYPkxwvPVDCzRyD3UbA7_jbEMgvTBFkiSEEfYCBg77c,29337
|
|
521
534
|
agno/vectordb/qdrant/__init__.py,sha256=x1ReQt79f9aI_T4JUWb36KNFnvdd-kVwZ1sLsU4sW7Q,76
|
|
522
|
-
agno/vectordb/qdrant/qdrant.py,sha256=
|
|
535
|
+
agno/vectordb/qdrant/qdrant.py,sha256=c-wF44hGMsBf-_c9DRdpPijR6_U-mv-ROgFoyOC3sV4,46922
|
|
523
536
|
agno/vectordb/singlestore/__init__.py,sha256=Cuaq_pvpX5jsUv3tWlOFnlrF4VGykGIIK5hfhnW6J2k,249
|
|
524
537
|
agno/vectordb/singlestore/index.py,sha256=p9LYQlVINlZZvZORfiDE3AIFinx07idDHr9_mM3EXAg,1527
|
|
525
|
-
agno/vectordb/singlestore/singlestore.py,sha256=
|
|
538
|
+
agno/vectordb/singlestore/singlestore.py,sha256=WFP8rvE3azf2QsXicQTibZ7Omcy2XWgJ_OVOUJJR4mA,30708
|
|
526
539
|
agno/vectordb/surrealdb/__init__.py,sha256=4GIpJZH0Hb42s1ZR0VS5BQ5RhTAaolmS-_rAIYn9poM,81
|
|
527
|
-
agno/vectordb/surrealdb/surrealdb.py,sha256=
|
|
540
|
+
agno/vectordb/surrealdb/surrealdb.py,sha256=pgSM83HCgfcNo8CDBfsB5PP4y8qwvfFAD1Zv_gpj7kM,25359
|
|
528
541
|
agno/vectordb/upstashdb/__init__.py,sha256=set3Sx1F3ZCw0--0AeC036EAS0cC1xKsvQUK5FyloFA,100
|
|
529
|
-
agno/vectordb/upstashdb/upstashdb.py,sha256=
|
|
542
|
+
agno/vectordb/upstashdb/upstashdb.py,sha256=ggFcNzQ1X47zWPGM6OhUdvOuG0A8JmrhkAkX7q2opD4,29030
|
|
530
543
|
agno/vectordb/weaviate/__init__.py,sha256=FIoFJgqSmGuFgpvmsg8EjAn8FDAhuqAXed7fjaW4exY,182
|
|
531
544
|
agno/vectordb/weaviate/index.py,sha256=y4XYPRZFksMfrrF85B4hn5AtmXM4SH--4CyLo27EHgM,253
|
|
532
|
-
agno/vectordb/weaviate/weaviate.py,sha256=
|
|
545
|
+
agno/vectordb/weaviate/weaviate.py,sha256=8KNa5a-RuksE6w9poD4vi_ixUBeoB96PkzCL9DHSs5o,39406
|
|
533
546
|
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.
|
|
547
|
+
agno/workflow/condition.py,sha256=MgJnHRPEJ2qCjUkcHKyZfOuAn-C38ZTgVcYjY8iTgrI,30122
|
|
548
|
+
agno/workflow/loop.py,sha256=q2XssC179htRC7KPiebUcvr0lKexfZUB9aUO4D3tOrk,32305
|
|
549
|
+
agno/workflow/parallel.py,sha256=Gb6XZbwDJgmBBbuiZTFHvphQqrsMVgM-HTOMoiIHweg,34843
|
|
550
|
+
agno/workflow/router.py,sha256=-gPT43a1mP0tnE6wQa4tEAuGWNppel8DbmCg0ajo-L0,28295
|
|
551
|
+
agno/workflow/step.py,sha256=phA5pfhDR_0rie-85WUoM8toGO7tVfP4nzfqOjGBrxI,58931
|
|
552
|
+
agno/workflow/steps.py,sha256=1qOcH0SuPTPE0Ac3sRyRLjFoMcKyTo44hlJXdbOBNnM,25389
|
|
553
|
+
agno/workflow/types.py,sha256=DutB4UkEppJoWRiNaGEnPk6xFNpg0oCBwOb7VJ8T_xE,18646
|
|
554
|
+
agno/workflow/workflow.py,sha256=AD2mKXap840IwPb2WMnVJM30lQLAFUfWxd7nqQJ52hU,137906
|
|
555
|
+
agno-2.1.6.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
556
|
+
agno-2.1.6.dist-info/METADATA,sha256=xLKz0Cbdnw7Q9c2IjtAe2vsNbXI3NNHzXAvLA6oRJSg,24504
|
|
557
|
+
agno-2.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
558
|
+
agno-2.1.6.dist-info/top_level.txt,sha256=MKyeuVesTyOKIXUhc-d_tPa2Hrh0oTA4LM0izowpx70,5
|
|
559
|
+
agno-2.1.6.dist-info/RECORD,,
|