agno 1.8.1__tar.gz → 2.0.0__tar.gz

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.
Files changed (965) hide show
  1. agno-2.0.0/LICENSE +201 -0
  2. agno-2.0.0/PKG-INFO +494 -0
  3. agno-2.0.0/README.md +138 -0
  4. agno-2.0.0/agno/__init__.py +8 -0
  5. agno-2.0.0/agno/agent/__init__.py +51 -0
  6. agno-2.0.0/agno/agent/agent.py +7300 -0
  7. agno-2.0.0/agno/api/agent.py +28 -0
  8. agno-2.0.0/agno/api/api.py +40 -0
  9. agno-2.0.0/agno/api/evals.py +22 -0
  10. agno-2.0.0/agno/api/os.py +17 -0
  11. agno-2.0.0/agno/api/routes.py +13 -0
  12. agno-2.0.0/agno/api/schemas/__init__.py +9 -0
  13. agno-2.0.0/agno/api/schemas/agent.py +16 -0
  14. agno-2.0.0/agno/api/schemas/evals.py +16 -0
  15. agno-2.0.0/agno/api/schemas/os.py +14 -0
  16. agno-2.0.0/agno/api/schemas/team.py +16 -0
  17. agno-2.0.0/agno/api/schemas/utils.py +21 -0
  18. agno-2.0.0/agno/api/schemas/workflows.py +16 -0
  19. agno-2.0.0/agno/api/settings.py +53 -0
  20. agno-2.0.0/agno/api/team.py +30 -0
  21. agno-2.0.0/agno/api/workflow.py +28 -0
  22. agno-2.0.0/agno/cloud/aws/base.py +214 -0
  23. agno-2.0.0/agno/cloud/aws/s3/__init__.py +2 -0
  24. agno-2.0.0/agno/cloud/aws/s3/api_client.py +43 -0
  25. agno-2.0.0/agno/cloud/aws/s3/bucket.py +195 -0
  26. agno-2.0.0/agno/cloud/aws/s3/object.py +57 -0
  27. agno-2.0.0/agno/db/__init__.py +24 -0
  28. agno-2.0.0/agno/db/base.py +245 -0
  29. agno-2.0.0/agno/db/dynamo/__init__.py +3 -0
  30. agno-2.0.0/agno/db/dynamo/dynamo.py +1743 -0
  31. agno-2.0.0/agno/db/dynamo/schemas.py +278 -0
  32. agno-2.0.0/agno/db/dynamo/utils.py +684 -0
  33. agno-2.0.0/agno/db/firestore/__init__.py +3 -0
  34. agno-2.0.0/agno/db/firestore/firestore.py +1432 -0
  35. agno-2.0.0/agno/db/firestore/schemas.py +130 -0
  36. agno-2.0.0/agno/db/firestore/utils.py +278 -0
  37. agno-2.0.0/agno/db/gcs_json/__init__.py +3 -0
  38. agno-2.0.0/agno/db/gcs_json/gcs_json_db.py +1001 -0
  39. agno-2.0.0/agno/db/gcs_json/utils.py +194 -0
  40. agno-2.0.0/agno/db/in_memory/__init__.py +3 -0
  41. agno-2.0.0/agno/db/in_memory/in_memory_db.py +882 -0
  42. agno-2.0.0/agno/db/in_memory/utils.py +172 -0
  43. agno-2.0.0/agno/db/json/__init__.py +3 -0
  44. agno-2.0.0/agno/db/json/json_db.py +1045 -0
  45. agno-2.0.0/agno/db/json/utils.py +196 -0
  46. agno-2.0.0/agno/db/migrations/v1_to_v2.py +162 -0
  47. agno-2.0.0/agno/db/mongo/__init__.py +3 -0
  48. agno-2.0.0/agno/db/mongo/mongo.py +1416 -0
  49. agno-2.0.0/agno/db/mongo/schemas.py +77 -0
  50. agno-2.0.0/agno/db/mongo/utils.py +204 -0
  51. agno-2.0.0/agno/db/mysql/__init__.py +3 -0
  52. agno-2.0.0/agno/db/mysql/mysql.py +1719 -0
  53. agno-2.0.0/agno/db/mysql/schemas.py +124 -0
  54. agno-2.0.0/agno/db/mysql/utils.py +297 -0
  55. agno-2.0.0/agno/db/postgres/__init__.py +3 -0
  56. agno-2.0.0/agno/db/postgres/postgres.py +1710 -0
  57. agno-2.0.0/agno/db/postgres/schemas.py +124 -0
  58. agno-2.0.0/agno/db/postgres/utils.py +280 -0
  59. agno-2.0.0/agno/db/redis/__init__.py +3 -0
  60. agno-2.0.0/agno/db/redis/redis.py +1367 -0
  61. agno-2.0.0/agno/db/redis/schemas.py +109 -0
  62. agno-2.0.0/agno/db/redis/utils.py +288 -0
  63. agno-2.0.0/agno/db/schemas/__init__.py +3 -0
  64. agno-2.0.0/agno/db/schemas/evals.py +33 -0
  65. agno-2.0.0/agno/db/schemas/knowledge.py +40 -0
  66. agno-2.0.0/agno/db/schemas/memory.py +46 -0
  67. agno-2.0.0/agno/db/singlestore/__init__.py +3 -0
  68. agno-2.0.0/agno/db/singlestore/schemas.py +116 -0
  69. agno-2.0.0/agno/db/singlestore/singlestore.py +1712 -0
  70. agno-2.0.0/agno/db/singlestore/utils.py +326 -0
  71. agno-2.0.0/agno/db/sqlite/__init__.py +3 -0
  72. agno-2.0.0/agno/db/sqlite/schemas.py +119 -0
  73. agno-2.0.0/agno/db/sqlite/sqlite.py +1676 -0
  74. agno-2.0.0/agno/db/sqlite/utils.py +268 -0
  75. agno-2.0.0/agno/db/utils.py +88 -0
  76. agno-2.0.0/agno/eval/__init__.py +14 -0
  77. agno-2.0.0/agno/eval/accuracy.py +827 -0
  78. agno-2.0.0/agno/eval/performance.py +770 -0
  79. agno-2.0.0/agno/eval/reliability.py +303 -0
  80. agno-2.0.0/agno/eval/utils.py +102 -0
  81. agno-2.0.0/agno/integrations/discord/__init__.py +3 -0
  82. agno-2.0.0/agno/integrations/discord/client.py +202 -0
  83. agno-2.0.0/agno/knowledge/__init__.py +5 -0
  84. agno-2.0.0/agno/knowledge/chunking/agentic.py +76 -0
  85. agno-2.0.0/agno/knowledge/chunking/document.py +91 -0
  86. agno-2.0.0/agno/knowledge/chunking/fixed.py +57 -0
  87. agno-2.0.0/agno/knowledge/chunking/markdown.py +151 -0
  88. agno-2.0.0/agno/knowledge/chunking/recursive.py +63 -0
  89. agno-2.0.0/agno/knowledge/chunking/row.py +39 -0
  90. agno-2.0.0/agno/knowledge/chunking/semantic.py +59 -0
  91. agno-2.0.0/agno/knowledge/chunking/strategy.py +121 -0
  92. agno-2.0.0/agno/knowledge/content.py +74 -0
  93. agno-2.0.0/agno/knowledge/document/__init__.py +5 -0
  94. agno-2.0.0/agno/knowledge/document/base.py +58 -0
  95. agno-2.0.0/agno/knowledge/embedder/__init__.py +5 -0
  96. agno-2.0.0/agno/knowledge/embedder/aws_bedrock.py +338 -0
  97. agno-2.0.0/agno/knowledge/embedder/azure_openai.py +156 -0
  98. agno-2.0.0/agno/knowledge/embedder/base.py +21 -0
  99. agno-2.0.0/agno/knowledge/embedder/cohere.py +144 -0
  100. agno-2.0.0/agno/knowledge/embedder/fastembed.py +62 -0
  101. agno-2.0.0/agno/knowledge/embedder/fireworks.py +13 -0
  102. agno-2.0.0/agno/knowledge/embedder/google.py +180 -0
  103. agno-2.0.0/agno/knowledge/embedder/huggingface.py +89 -0
  104. agno-2.0.0/agno/knowledge/embedder/jina.py +119 -0
  105. agno-2.0.0/agno/knowledge/embedder/langdb.py +22 -0
  106. agno-2.0.0/agno/knowledge/embedder/mistral.py +139 -0
  107. agno-2.0.0/agno/knowledge/embedder/nebius.py +13 -0
  108. agno-2.0.0/agno/knowledge/embedder/ollama.py +141 -0
  109. agno-2.0.0/agno/knowledge/embedder/openai.py +223 -0
  110. agno-2.0.0/agno/knowledge/embedder/sentence_transformer.py +59 -0
  111. agno-2.0.0/agno/knowledge/embedder/together.py +13 -0
  112. agno-2.0.0/agno/knowledge/embedder/voyageai.py +112 -0
  113. agno-2.0.0/agno/knowledge/knowledge.py +1551 -0
  114. agno-2.0.0/agno/knowledge/reader/__init__.py +7 -0
  115. agno-2.0.0/agno/knowledge/reader/arxiv_reader.py +81 -0
  116. agno-2.0.0/agno/knowledge/reader/base.py +88 -0
  117. agno-2.0.0/agno/knowledge/reader/csv_reader.py +166 -0
  118. agno-2.0.0/agno/knowledge/reader/docx_reader.py +83 -0
  119. agno-2.0.0/agno/knowledge/reader/firecrawl_reader.py +201 -0
  120. agno-2.0.0/agno/knowledge/reader/json_reader.py +87 -0
  121. agno-2.0.0/agno/knowledge/reader/markdown_reader.py +137 -0
  122. agno-2.0.0/agno/knowledge/reader/pdf_reader.py +456 -0
  123. agno-2.0.0/agno/knowledge/reader/reader_factory.py +268 -0
  124. agno-2.0.0/agno/knowledge/reader/s3_reader.py +101 -0
  125. agno-2.0.0/agno/knowledge/reader/text_reader.py +115 -0
  126. agno-2.0.0/agno/knowledge/reader/url_reader.py +128 -0
  127. agno-2.0.0/agno/knowledge/reader/web_search_reader.py +366 -0
  128. agno-2.0.0/agno/knowledge/reader/website_reader.py +437 -0
  129. agno-2.0.0/agno/knowledge/reader/wikipedia_reader.py +59 -0
  130. agno-2.0.0/agno/knowledge/reader/youtube_reader.py +78 -0
  131. agno-2.0.0/agno/knowledge/remote_content/remote_content.py +88 -0
  132. agno-2.0.0/agno/knowledge/reranker/base.py +14 -0
  133. agno-2.0.0/agno/knowledge/reranker/cohere.py +64 -0
  134. agno-2.0.0/agno/knowledge/reranker/infinity.py +195 -0
  135. agno-2.0.0/agno/knowledge/reranker/sentence_transformer.py +54 -0
  136. agno-2.0.0/agno/knowledge/types.py +30 -0
  137. agno-2.0.0/agno/knowledge/utils.py +169 -0
  138. agno-2.0.0/agno/media.py +390 -0
  139. agno-2.0.0/agno/memory/__init__.py +3 -0
  140. agno-2.0.0/agno/memory/manager.py +1073 -0
  141. agno-2.0.0/agno/models/aimlapi/__init__.py +5 -0
  142. agno-2.0.0/agno/models/aimlapi/aimlapi.py +45 -0
  143. agno-2.0.0/agno/models/anthropic/claude.py +645 -0
  144. agno-2.0.0/agno/models/aws/bedrock.py +761 -0
  145. agno-2.0.0/agno/models/aws/claude.py +378 -0
  146. agno-2.0.0/agno/models/azure/ai_foundry.py +467 -0
  147. agno-2.0.0/agno/models/base.py +1762 -0
  148. agno-2.0.0/agno/models/cerebras/cerebras.py +492 -0
  149. agno-2.0.0/agno/models/cohere/chat.py +389 -0
  150. agno-2.0.0/agno/models/google/gemini.py +1045 -0
  151. agno-2.0.0/agno/models/groq/groq.py +553 -0
  152. agno-2.0.0/agno/models/huggingface/huggingface.py +490 -0
  153. agno-2.0.0/agno/models/ibm/watsonx.py +422 -0
  154. agno-2.0.0/agno/models/litellm/chat.py +451 -0
  155. agno-2.0.0/agno/models/message.py +295 -0
  156. agno-2.0.0/agno/models/meta/llama.py +469 -0
  157. agno-2.0.0/agno/models/metrics.py +120 -0
  158. agno-2.0.0/agno/models/mistral/mistral.py +432 -0
  159. agno-2.0.0/agno/models/ollama/__init__.py +5 -0
  160. agno-2.0.0/agno/models/ollama/chat.py +387 -0
  161. agno-2.0.0/agno/models/openai/chat.py +859 -0
  162. agno-2.0.0/agno/models/openai/responses.py +1050 -0
  163. agno-2.0.0/agno/models/perplexity/perplexity.py +188 -0
  164. agno-2.0.0/agno/models/portkey/portkey.py +81 -0
  165. agno-2.0.0/agno/models/response.py +124 -0
  166. agno-2.0.0/agno/models/utils.py +20 -0
  167. agno-2.0.0/agno/models/vercel/__init__.py +3 -0
  168. agno-2.0.0/agno/models/vercel/v0.py +26 -0
  169. agno-2.0.0/agno/models/vllm/__init__.py +3 -0
  170. agno-2.0.0/agno/models/vllm/vllm.py +77 -0
  171. agno-2.0.0/agno/models/xai/xai.py +112 -0
  172. agno-2.0.0/agno/os/__init__.py +3 -0
  173. agno-2.0.0/agno/os/app.py +497 -0
  174. agno-2.0.0/agno/os/auth.py +47 -0
  175. agno-2.0.0/agno/os/config.py +103 -0
  176. agno-2.0.0/agno/os/interfaces/agui/__init__.py +3 -0
  177. agno-2.0.0/agno/os/interfaces/agui/agui.py +31 -0
  178. agno-2.0.0/agno/os/interfaces/agui/router.py +120 -0
  179. agno-2.0.0/agno/os/interfaces/agui/utils.py +434 -0
  180. agno-2.0.0/agno/os/interfaces/base.py +21 -0
  181. agno-2.0.0/agno/os/interfaces/slack/__init__.py +3 -0
  182. agno-2.0.0/agno/os/interfaces/slack/router.py +90 -0
  183. agno-2.0.0/agno/os/interfaces/slack/slack.py +32 -0
  184. agno-2.0.0/agno/os/interfaces/whatsapp/__init__.py +3 -0
  185. agno-2.0.0/agno/os/interfaces/whatsapp/router.py +204 -0
  186. agno-2.0.0/agno/os/interfaces/whatsapp/whatsapp.py +29 -0
  187. agno-2.0.0/agno/os/mcp.py +235 -0
  188. agno-2.0.0/agno/os/router.py +1400 -0
  189. agno-2.0.0/agno/os/routers/__init__.py +3 -0
  190. agno-2.0.0/agno/os/routers/evals/__init__.py +3 -0
  191. agno-2.0.0/agno/os/routers/evals/evals.py +393 -0
  192. agno-2.0.0/agno/os/routers/evals/schemas.py +142 -0
  193. agno-2.0.0/agno/os/routers/evals/utils.py +161 -0
  194. agno-2.0.0/agno/os/routers/knowledge/__init__.py +3 -0
  195. agno-2.0.0/agno/os/routers/knowledge/knowledge.py +850 -0
  196. agno-2.0.0/agno/os/routers/knowledge/schemas.py +118 -0
  197. agno-2.0.0/agno/os/routers/memory/__init__.py +3 -0
  198. agno-2.0.0/agno/os/routers/memory/memory.py +410 -0
  199. agno-2.0.0/agno/os/routers/memory/schemas.py +58 -0
  200. agno-2.0.0/agno/os/routers/metrics/__init__.py +3 -0
  201. agno-2.0.0/agno/os/routers/metrics/metrics.py +178 -0
  202. agno-2.0.0/agno/os/routers/metrics/schemas.py +47 -0
  203. agno-2.0.0/agno/os/routers/session/__init__.py +3 -0
  204. agno-2.0.0/agno/os/routers/session/session.py +536 -0
  205. agno-2.0.0/agno/os/schema.py +945 -0
  206. agno-2.0.0/agno/os/settings.py +43 -0
  207. agno-2.0.0/agno/os/utils.py +270 -0
  208. agno-2.0.0/agno/reasoning/azure_ai_foundry.py +67 -0
  209. agno-2.0.0/agno/reasoning/deepseek.py +63 -0
  210. agno-2.0.0/agno/reasoning/default.py +95 -0
  211. agno-2.0.0/agno/reasoning/groq.py +71 -0
  212. agno-2.0.0/agno/reasoning/helpers.py +63 -0
  213. agno-2.0.0/agno/reasoning/ollama.py +67 -0
  214. agno-2.0.0/agno/reasoning/openai.py +81 -0
  215. agno-2.0.0/agno/run/agent.py +633 -0
  216. agno-2.0.0/agno/run/base.py +190 -0
  217. agno-2.0.0/agno/run/cancel.py +81 -0
  218. agno-2.0.0/agno/run/team.py +612 -0
  219. agno-2.0.0/agno/run/workflow.py +597 -0
  220. agno-2.0.0/agno/session/__init__.py +10 -0
  221. agno-2.0.0/agno/session/agent.py +244 -0
  222. agno-2.0.0/agno/session/summary.py +225 -0
  223. agno-2.0.0/agno/session/team.py +262 -0
  224. agno-2.0.0/agno/session/workflow.py +136 -0
  225. agno-2.0.0/agno/team/__init__.py +37 -0
  226. agno-2.0.0/agno/team/team.py +6651 -0
  227. agno-2.0.0/agno/tools/agentql.py +120 -0
  228. agno-2.0.0/agno/tools/airflow.py +69 -0
  229. agno-2.0.0/agno/tools/api.py +122 -0
  230. agno-2.0.0/agno/tools/apify.py +314 -0
  231. agno-2.0.0/agno/tools/arxiv.py +127 -0
  232. agno-2.0.0/agno/tools/aws_lambda.py +53 -0
  233. agno-2.0.0/agno/tools/aws_ses.py +66 -0
  234. agno-2.0.0/agno/tools/baidusearch.py +89 -0
  235. agno-2.0.0/agno/tools/bitbucket.py +292 -0
  236. agno-2.0.0/agno/tools/brandfetch.py +213 -0
  237. agno-2.0.0/agno/tools/bravesearch.py +106 -0
  238. agno-2.0.0/agno/tools/brightdata.py +367 -0
  239. agno-2.0.0/agno/tools/browserbase.py +209 -0
  240. agno-2.0.0/agno/tools/calcom.py +255 -0
  241. agno-2.0.0/agno/tools/calculator.py +151 -0
  242. agno-2.0.0/agno/tools/cartesia.py +187 -0
  243. agno-2.0.0/agno/tools/clickup.py +244 -0
  244. agno-2.0.0/agno/tools/confluence.py +240 -0
  245. agno-2.0.0/agno/tools/crawl4ai.py +158 -0
  246. agno-2.0.0/agno/tools/csv_toolkit.py +185 -0
  247. agno-2.0.0/agno/tools/dalle.py +112 -0
  248. agno-2.0.0/agno/tools/daytona.py +475 -0
  249. agno-2.0.0/agno/tools/decorator.py +260 -0
  250. agno-2.0.0/agno/tools/desi_vocal.py +108 -0
  251. agno-2.0.0/agno/tools/discord.py +161 -0
  252. agno-2.0.0/agno/tools/docker.py +716 -0
  253. agno-2.0.0/agno/tools/duckdb.py +379 -0
  254. agno-2.0.0/agno/tools/duckduckgo.py +87 -0
  255. agno-2.0.0/agno/tools/e2b.py +696 -0
  256. agno-2.0.0/agno/tools/eleven_labs.py +198 -0
  257. agno-2.0.0/agno/tools/email.py +67 -0
  258. agno-2.0.0/agno/tools/evm.py +129 -0
  259. agno-2.0.0/agno/tools/exa.py +391 -0
  260. agno-2.0.0/agno/tools/fal.py +127 -0
  261. agno-2.0.0/agno/tools/file.py +110 -0
  262. agno-2.0.0/agno/tools/financial_datasets.py +288 -0
  263. agno-2.0.0/agno/tools/firecrawl.py +143 -0
  264. agno-2.0.0/agno/tools/function.py +967 -0
  265. agno-2.0.0/agno/tools/giphy.py +93 -0
  266. agno-2.0.0/agno/tools/github.py +1760 -0
  267. agno-2.0.0/agno/tools/gmail.py +698 -0
  268. agno-2.0.0/agno/tools/google_bigquery.py +117 -0
  269. agno-2.0.0/agno/tools/google_maps.py +253 -0
  270. agno-2.0.0/agno/tools/googlesearch.py +98 -0
  271. agno-2.0.0/agno/tools/googlesheets.py +362 -0
  272. agno-2.0.0/agno/tools/hackernews.py +77 -0
  273. agno-2.0.0/agno/tools/jina.py +101 -0
  274. agno-2.0.0/agno/tools/jira.py +150 -0
  275. agno-2.0.0/agno/tools/knowledge.py +218 -0
  276. agno-2.0.0/agno/tools/linear.py +426 -0
  277. agno-2.0.0/agno/tools/linkup.py +58 -0
  278. agno-2.0.0/agno/tools/local_file_system.py +90 -0
  279. agno-2.0.0/agno/tools/lumalab.py +183 -0
  280. agno-2.0.0/agno/tools/mcp.py +610 -0
  281. agno-2.0.0/agno/tools/mem0.py +199 -0
  282. agno-2.0.0/agno/tools/memori.py +391 -0
  283. agno-2.0.0/agno/tools/mlx_transcribe.py +139 -0
  284. agno-2.0.0/agno/tools/models/azure_openai.py +190 -0
  285. agno-2.0.0/agno/tools/models/gemini.py +203 -0
  286. agno-2.0.0/agno/tools/models/groq.py +158 -0
  287. agno-2.0.0/agno/tools/models/nebius.py +124 -0
  288. agno-2.0.0/agno/tools/models_labs.py +195 -0
  289. agno-2.0.0/agno/tools/moviepy_video.py +349 -0
  290. agno-2.0.0/agno/tools/neo4j.py +134 -0
  291. agno-2.0.0/agno/tools/newspaper.py +46 -0
  292. agno-2.0.0/agno/tools/newspaper4k.py +93 -0
  293. agno-2.0.0/agno/tools/openai.py +202 -0
  294. agno-2.0.0/agno/tools/openbb.py +160 -0
  295. agno-2.0.0/agno/tools/opencv.py +321 -0
  296. agno-2.0.0/agno/tools/openweather.py +233 -0
  297. agno-2.0.0/agno/tools/pandas.py +102 -0
  298. agno-2.0.0/agno/tools/postgres.py +257 -0
  299. agno-2.0.0/agno/tools/pubmed.py +188 -0
  300. agno-2.0.0/agno/tools/python.py +205 -0
  301. agno-2.0.0/agno/tools/reasoning.py +283 -0
  302. agno-2.0.0/agno/tools/reddit.py +467 -0
  303. agno-2.0.0/agno/tools/replicate.py +117 -0
  304. agno-2.0.0/agno/tools/resend.py +62 -0
  305. agno-2.0.0/agno/tools/scrapegraph.py +195 -0
  306. agno-2.0.0/agno/tools/searxng.py +152 -0
  307. agno-2.0.0/agno/tools/serpapi.py +116 -0
  308. agno-2.0.0/agno/tools/serper.py +255 -0
  309. agno-2.0.0/agno/tools/shell.py +53 -0
  310. agno-2.0.0/agno/tools/slack.py +121 -0
  311. agno-2.0.0/agno/tools/sleep.py +20 -0
  312. agno-2.0.0/agno/tools/spider.py +116 -0
  313. agno-2.0.0/agno/tools/sql.py +154 -0
  314. agno-2.0.0/agno/tools/tavily.py +108 -0
  315. agno-2.0.0/agno/tools/telegram.py +48 -0
  316. agno-2.0.0/agno/tools/todoist.py +218 -0
  317. agno-2.0.0/agno/tools/toolkit.py +146 -0
  318. agno-2.0.0/agno/tools/trafilatura.py +388 -0
  319. agno-2.0.0/agno/tools/trello.py +274 -0
  320. agno-2.0.0/agno/tools/twilio.py +186 -0
  321. agno-2.0.0/agno/tools/user_control_flow.py +78 -0
  322. agno-2.0.0/agno/tools/valyu.py +228 -0
  323. agno-2.0.0/agno/tools/visualization.py +467 -0
  324. agno-2.0.0/agno/tools/webbrowser.py +28 -0
  325. agno-2.0.0/agno/tools/webex.py +76 -0
  326. agno-2.0.0/agno/tools/website.py +54 -0
  327. agno-2.0.0/agno/tools/webtools.py +45 -0
  328. agno-2.0.0/agno/tools/whatsapp.py +286 -0
  329. agno-2.0.0/agno/tools/wikipedia.py +63 -0
  330. agno-2.0.0/agno/tools/x.py +335 -0
  331. agno-2.0.0/agno/tools/yfinance.py +257 -0
  332. agno-2.0.0/agno/tools/youtube.py +184 -0
  333. agno-2.0.0/agno/tools/zendesk.py +82 -0
  334. agno-2.0.0/agno/tools/zep.py +454 -0
  335. agno-2.0.0/agno/tools/zoom.py +382 -0
  336. agno-2.0.0/agno/utils/common.py +43 -0
  337. agno-2.0.0/agno/utils/events.py +481 -0
  338. agno-2.0.0/agno/utils/gemini.py +268 -0
  339. agno-2.0.0/agno/utils/knowledge.py +29 -0
  340. agno-2.0.0/agno/utils/log.py +254 -0
  341. agno-2.0.0/agno/utils/mcp.py +124 -0
  342. agno-2.0.0/agno/utils/media.py +185 -0
  343. agno-2.0.0/agno/utils/message.py +58 -0
  344. agno-2.0.0/agno/utils/models/aws_claude.py +170 -0
  345. agno-2.0.0/agno/utils/models/claude.py +329 -0
  346. agno-2.0.0/agno/utils/models/cohere.py +87 -0
  347. agno-2.0.0/agno/utils/models/mistral.py +98 -0
  348. agno-2.0.0/agno/utils/models/schema_utils.py +153 -0
  349. agno-2.0.0/agno/utils/models/watsonx.py +41 -0
  350. agno-2.0.0/agno/utils/openai.py +257 -0
  351. agno-2.0.0/agno/utils/pprint.py +178 -0
  352. agno-2.0.0/agno/utils/print_response/agent.py +779 -0
  353. agno-2.0.0/agno/utils/print_response/team.py +1669 -0
  354. agno-2.0.0/agno/utils/print_response/workflow.py +1451 -0
  355. agno-2.0.0/agno/utils/prompts.py +111 -0
  356. agno-2.0.0/agno/utils/reasoning.py +87 -0
  357. agno-2.0.0/agno/utils/response.py +163 -0
  358. agno-2.0.0/agno/utils/streamlit.py +481 -0
  359. agno-2.0.0/agno/utils/string.py +190 -0
  360. agno-2.0.0/agno/utils/team.py +50 -0
  361. agno-2.0.0/agno/utils/timer.py +41 -0
  362. agno-2.0.0/agno/vectordb/base.py +108 -0
  363. agno-2.0.0/agno/vectordb/cassandra/cassandra.py +445 -0
  364. agno-2.0.0/agno/vectordb/chroma/chromadb.py +785 -0
  365. agno-2.0.0/agno/vectordb/clickhouse/clickhousedb.py +782 -0
  366. agno-2.0.0/agno/vectordb/couchbase/couchbase.py +1351 -0
  367. agno-2.0.0/agno/vectordb/lancedb/lance_db.py +947 -0
  368. agno-2.0.0/agno/vectordb/langchaindb/__init__.py +5 -0
  369. agno-2.0.0/agno/vectordb/langchaindb/langchaindb.py +145 -0
  370. agno-2.0.0/agno/vectordb/lightrag/__init__.py +5 -0
  371. agno-2.0.0/agno/vectordb/lightrag/lightrag.py +374 -0
  372. agno-2.0.0/agno/vectordb/llamaindex/llamaindexdb.py +127 -0
  373. agno-2.0.0/agno/vectordb/milvus/milvus.py +1065 -0
  374. agno-2.0.0/agno/vectordb/mongodb/mongodb.py +1312 -0
  375. agno-2.0.0/agno/vectordb/pgvector/pgvector.py +1341 -0
  376. agno-2.0.0/agno/vectordb/pineconedb/pineconedb.py +675 -0
  377. agno-2.0.0/agno/vectordb/qdrant/qdrant.py +1048 -0
  378. agno-2.0.0/agno/vectordb/singlestore/singlestore.py +677 -0
  379. agno-2.0.0/agno/vectordb/surrealdb/surrealdb.py +673 -0
  380. agno-2.0.0/agno/vectordb/upstashdb/upstashdb.py +650 -0
  381. agno-2.0.0/agno/vectordb/weaviate/weaviate.py +934 -0
  382. agno-2.0.0/agno/workflow/__init__.py +21 -0
  383. agno-2.0.0/agno/workflow/condition.py +657 -0
  384. agno-2.0.0/agno/workflow/loop.py +689 -0
  385. agno-2.0.0/agno/workflow/parallel.py +689 -0
  386. agno-2.0.0/agno/workflow/router.py +622 -0
  387. agno-2.0.0/agno/workflow/step.py +1023 -0
  388. agno-2.0.0/agno/workflow/steps.py +546 -0
  389. agno-2.0.0/agno/workflow/types.py +482 -0
  390. agno-2.0.0/agno/workflow/workflow.py +2521 -0
  391. agno-2.0.0/agno.egg-info/PKG-INFO +494 -0
  392. agno-2.0.0/agno.egg-info/SOURCES.txt +518 -0
  393. agno-2.0.0/agno.egg-info/requires.txt +431 -0
  394. agno-2.0.0/pyproject.toml +473 -0
  395. agno-1.8.1/LICENSE +0 -375
  396. agno-1.8.1/PKG-INFO +0 -982
  397. agno-1.8.1/README.md +0 -263
  398. agno-1.8.1/agno/agent/__init__.py +0 -59
  399. agno-1.8.1/agno/agent/agent.py +0 -8327
  400. agno-1.8.1/agno/agent/metrics.py +0 -107
  401. agno-1.8.1/agno/api/agent.py +0 -84
  402. agno-1.8.1/agno/api/api.py +0 -81
  403. agno-1.8.1/agno/api/app.py +0 -35
  404. agno-1.8.1/agno/api/evals.py +0 -33
  405. agno-1.8.1/agno/api/playground.py +0 -92
  406. agno-1.8.1/agno/api/routes.py +0 -48
  407. agno-1.8.1/agno/api/schemas/agent.py +0 -32
  408. agno-1.8.1/agno/api/schemas/app.py +0 -12
  409. agno-1.8.1/agno/api/schemas/evals.py +0 -25
  410. agno-1.8.1/agno/api/schemas/playground.py +0 -22
  411. agno-1.8.1/agno/api/schemas/team.py +0 -32
  412. agno-1.8.1/agno/api/schemas/user.py +0 -35
  413. agno-1.8.1/agno/api/schemas/workflows.py +0 -12
  414. agno-1.8.1/agno/api/schemas/workspace.py +0 -46
  415. agno-1.8.1/agno/api/team.py +0 -85
  416. agno-1.8.1/agno/api/user.py +0 -160
  417. agno-1.8.1/agno/api/workflows.py +0 -33
  418. agno-1.8.1/agno/api/workspace.py +0 -175
  419. agno-1.8.1/agno/app/agui/__init__.py +0 -3
  420. agno-1.8.1/agno/app/agui/app.py +0 -17
  421. agno-1.8.1/agno/app/agui/async_router.py +0 -120
  422. agno-1.8.1/agno/app/agui/sync_router.py +0 -120
  423. agno-1.8.1/agno/app/agui/utils.py +0 -390
  424. agno-1.8.1/agno/app/base.py +0 -186
  425. agno-1.8.1/agno/app/discord/__init__.py +0 -3
  426. agno-1.8.1/agno/app/discord/client.py +0 -198
  427. agno-1.8.1/agno/app/fastapi/__init__.py +0 -3
  428. agno-1.8.1/agno/app/fastapi/app.py +0 -107
  429. agno-1.8.1/agno/app/fastapi/async_router.py +0 -457
  430. agno-1.8.1/agno/app/fastapi/sync_router.py +0 -448
  431. agno-1.8.1/agno/app/playground/app.py +0 -228
  432. agno-1.8.1/agno/app/playground/async_router.py +0 -1050
  433. agno-1.8.1/agno/app/playground/deploy.py +0 -249
  434. agno-1.8.1/agno/app/playground/operator.py +0 -183
  435. agno-1.8.1/agno/app/playground/schemas.py +0 -220
  436. agno-1.8.1/agno/app/playground/serve.py +0 -55
  437. agno-1.8.1/agno/app/playground/settings.py +0 -51
  438. agno-1.8.1/agno/app/playground/sync_router.py +0 -1042
  439. agno-1.8.1/agno/app/playground/utils.py +0 -46
  440. agno-1.8.1/agno/app/settings.py +0 -15
  441. agno-1.8.1/agno/app/slack/__init__.py +0 -3
  442. agno-1.8.1/agno/app/slack/app.py +0 -19
  443. agno-1.8.1/agno/app/slack/async_router.py +0 -92
  444. agno-1.8.1/agno/app/slack/sync_router.py +0 -92
  445. agno-1.8.1/agno/app/utils.py +0 -54
  446. agno-1.8.1/agno/app/whatsapp/__init__.py +0 -3
  447. agno-1.8.1/agno/app/whatsapp/app.py +0 -15
  448. agno-1.8.1/agno/app/whatsapp/async_router.py +0 -207
  449. agno-1.8.1/agno/app/whatsapp/sync_router.py +0 -197
  450. agno-1.8.1/agno/cli/auth_server.py +0 -249
  451. agno-1.8.1/agno/cli/config.py +0 -274
  452. agno-1.8.1/agno/cli/console.py +0 -88
  453. agno-1.8.1/agno/cli/credentials.py +0 -23
  454. agno-1.8.1/agno/cli/entrypoint.py +0 -571
  455. agno-1.8.1/agno/cli/operator.py +0 -357
  456. agno-1.8.1/agno/cli/settings.py +0 -96
  457. agno-1.8.1/agno/cli/ws/ws_cli.py +0 -817
  458. agno-1.8.1/agno/constants.py +0 -13
  459. agno-1.8.1/agno/document/__init__.py +0 -5
  460. agno-1.8.1/agno/document/base.py +0 -48
  461. agno-1.8.1/agno/document/chunking/agentic.py +0 -76
  462. agno-1.8.1/agno/document/chunking/document.py +0 -91
  463. agno-1.8.1/agno/document/chunking/fixed.py +0 -57
  464. agno-1.8.1/agno/document/chunking/markdown.py +0 -151
  465. agno-1.8.1/agno/document/chunking/recursive.py +0 -63
  466. agno-1.8.1/agno/document/chunking/row.py +0 -39
  467. agno-1.8.1/agno/document/chunking/semantic.py +0 -45
  468. agno-1.8.1/agno/document/chunking/strategy.py +0 -31
  469. agno-1.8.1/agno/document/reader/__init__.py +0 -5
  470. agno-1.8.1/agno/document/reader/arxiv_reader.py +0 -53
  471. agno-1.8.1/agno/document/reader/base.py +0 -47
  472. agno-1.8.1/agno/document/reader/csv_reader.py +0 -184
  473. agno-1.8.1/agno/document/reader/docx_reader.py +0 -60
  474. agno-1.8.1/agno/document/reader/firecrawl_reader.py +0 -180
  475. agno-1.8.1/agno/document/reader/gcs/pdf_reader.py +0 -44
  476. agno-1.8.1/agno/document/reader/json_reader.py +0 -66
  477. agno-1.8.1/agno/document/reader/markdown_reader.py +0 -88
  478. agno-1.8.1/agno/document/reader/pdf_reader.py +0 -511
  479. agno-1.8.1/agno/document/reader/s3/pdf_reader.py +0 -59
  480. agno-1.8.1/agno/document/reader/s3/text_reader.py +0 -63
  481. agno-1.8.1/agno/document/reader/text_reader.py +0 -94
  482. agno-1.8.1/agno/document/reader/url_reader.py +0 -59
  483. agno-1.8.1/agno/document/reader/website_reader.py +0 -410
  484. agno-1.8.1/agno/document/reader/youtube_reader.py +0 -58
  485. agno-1.8.1/agno/embedder/__init__.py +0 -5
  486. agno-1.8.1/agno/embedder/aws_bedrock.py +0 -212
  487. agno-1.8.1/agno/embedder/azure_openai.py +0 -92
  488. agno-1.8.1/agno/embedder/base.py +0 -15
  489. agno-1.8.1/agno/embedder/cohere.py +0 -73
  490. agno-1.8.1/agno/embedder/fastembed.py +0 -46
  491. agno-1.8.1/agno/embedder/fireworks.py +0 -13
  492. agno-1.8.1/agno/embedder/google.py +0 -107
  493. agno-1.8.1/agno/embedder/huggingface.py +0 -55
  494. agno-1.8.1/agno/embedder/jina.py +0 -73
  495. agno-1.8.1/agno/embedder/langdb.py +0 -80
  496. agno-1.8.1/agno/embedder/mistral.py +0 -82
  497. agno-1.8.1/agno/embedder/nebius.py +0 -13
  498. agno-1.8.1/agno/embedder/ollama.py +0 -90
  499. agno-1.8.1/agno/embedder/openai.py +0 -78
  500. agno-1.8.1/agno/embedder/sentence_transformer.py +0 -44
  501. agno-1.8.1/agno/embedder/together.py +0 -13
  502. agno-1.8.1/agno/embedder/voyageai.py +0 -64
  503. agno-1.8.1/agno/eval/accuracy.py +0 -721
  504. agno-1.8.1/agno/eval/performance.py +0 -705
  505. agno-1.8.1/agno/eval/reliability.py +0 -250
  506. agno-1.8.1/agno/eval/utils.py +0 -92
  507. agno-1.8.1/agno/file/__init__.py +0 -5
  508. agno-1.8.1/agno/file/file.py +0 -16
  509. agno-1.8.1/agno/file/local/csv.py +0 -32
  510. agno-1.8.1/agno/file/local/txt.py +0 -19
  511. agno-1.8.1/agno/infra/app.py +0 -240
  512. agno-1.8.1/agno/infra/base.py +0 -144
  513. agno-1.8.1/agno/infra/context.py +0 -20
  514. agno-1.8.1/agno/infra/db_app.py +0 -52
  515. agno-1.8.1/agno/infra/resource.py +0 -205
  516. agno-1.8.1/agno/infra/resources.py +0 -55
  517. agno-1.8.1/agno/knowledge/__init__.py +0 -5
  518. agno-1.8.1/agno/knowledge/agent.py +0 -702
  519. agno-1.8.1/agno/knowledge/arxiv.py +0 -33
  520. agno-1.8.1/agno/knowledge/combined.py +0 -36
  521. agno-1.8.1/agno/knowledge/csv.py +0 -144
  522. agno-1.8.1/agno/knowledge/csv_url.py +0 -124
  523. agno-1.8.1/agno/knowledge/document.py +0 -223
  524. agno-1.8.1/agno/knowledge/docx.py +0 -137
  525. agno-1.8.1/agno/knowledge/firecrawl.py +0 -34
  526. agno-1.8.1/agno/knowledge/gcs/base.py +0 -39
  527. agno-1.8.1/agno/knowledge/gcs/pdf.py +0 -125
  528. agno-1.8.1/agno/knowledge/json.py +0 -137
  529. agno-1.8.1/agno/knowledge/langchain.py +0 -71
  530. agno-1.8.1/agno/knowledge/light_rag.py +0 -273
  531. agno-1.8.1/agno/knowledge/llamaindex.py +0 -66
  532. agno-1.8.1/agno/knowledge/markdown.py +0 -154
  533. agno-1.8.1/agno/knowledge/pdf.py +0 -164
  534. agno-1.8.1/agno/knowledge/pdf_bytes.py +0 -42
  535. agno-1.8.1/agno/knowledge/pdf_url.py +0 -148
  536. agno-1.8.1/agno/knowledge/s3/base.py +0 -64
  537. agno-1.8.1/agno/knowledge/s3/pdf.py +0 -33
  538. agno-1.8.1/agno/knowledge/s3/text.py +0 -34
  539. agno-1.8.1/agno/knowledge/text.py +0 -141
  540. agno-1.8.1/agno/knowledge/url.py +0 -46
  541. agno-1.8.1/agno/knowledge/website.py +0 -179
  542. agno-1.8.1/agno/knowledge/wikipedia.py +0 -32
  543. agno-1.8.1/agno/knowledge/youtube.py +0 -35
  544. agno-1.8.1/agno/media.py +0 -389
  545. agno-1.8.1/agno/memory/__init__.py +0 -11
  546. agno-1.8.1/agno/memory/agent.py +0 -423
  547. agno-1.8.1/agno/memory/classifier.py +0 -104
  548. agno-1.8.1/agno/memory/db/__init__.py +0 -5
  549. agno-1.8.1/agno/memory/db/base.py +0 -42
  550. agno-1.8.1/agno/memory/db/mongodb.py +0 -189
  551. agno-1.8.1/agno/memory/db/postgres.py +0 -203
  552. agno-1.8.1/agno/memory/db/sqlite.py +0 -193
  553. agno-1.8.1/agno/memory/manager.py +0 -218
  554. agno-1.8.1/agno/memory/memory.py +0 -22
  555. agno-1.8.1/agno/memory/row.py +0 -36
  556. agno-1.8.1/agno/memory/summarizer.py +0 -201
  557. agno-1.8.1/agno/memory/summary.py +0 -19
  558. agno-1.8.1/agno/memory/team.py +0 -415
  559. agno-1.8.1/agno/memory/v2/__init__.py +0 -2
  560. agno-1.8.1/agno/memory/v2/db/__init__.py +0 -1
  561. agno-1.8.1/agno/memory/v2/db/base.py +0 -42
  562. agno-1.8.1/agno/memory/v2/db/firestore.py +0 -339
  563. agno-1.8.1/agno/memory/v2/db/mongodb.py +0 -196
  564. agno-1.8.1/agno/memory/v2/db/postgres.py +0 -214
  565. agno-1.8.1/agno/memory/v2/db/redis.py +0 -187
  566. agno-1.8.1/agno/memory/v2/db/schema.py +0 -54
  567. agno-1.8.1/agno/memory/v2/db/sqlite.py +0 -209
  568. agno-1.8.1/agno/memory/v2/manager.py +0 -437
  569. agno-1.8.1/agno/memory/v2/memory.py +0 -1097
  570. agno-1.8.1/agno/memory/v2/schema.py +0 -55
  571. agno-1.8.1/agno/memory/v2/summarizer.py +0 -215
  572. agno-1.8.1/agno/memory/workflow.py +0 -38
  573. agno-1.8.1/agno/models/aimlapi/__init__.py +0 -5
  574. agno-1.8.1/agno/models/aimlapi/aimlapi.py +0 -45
  575. agno-1.8.1/agno/models/anthropic/claude.py +0 -645
  576. agno-1.8.1/agno/models/aws/bedrock.py +0 -833
  577. agno-1.8.1/agno/models/aws/claude.py +0 -332
  578. agno-1.8.1/agno/models/azure/ai_foundry.py +0 -417
  579. agno-1.8.1/agno/models/base.py +0 -1706
  580. agno-1.8.1/agno/models/cerebras/cerebras.py +0 -435
  581. agno-1.8.1/agno/models/cohere/chat.py +0 -381
  582. agno-1.8.1/agno/models/google/gemini.py +0 -986
  583. agno-1.8.1/agno/models/groq/groq.py +0 -491
  584. agno-1.8.1/agno/models/huggingface/huggingface.py +0 -425
  585. agno-1.8.1/agno/models/ibm/watsonx.py +0 -363
  586. agno-1.8.1/agno/models/litellm/chat.py +0 -379
  587. agno-1.8.1/agno/models/message.py +0 -400
  588. agno-1.8.1/agno/models/meta/llama.py +0 -433
  589. agno-1.8.1/agno/models/mistral/mistral.py +0 -363
  590. agno-1.8.1/agno/models/ollama/__init__.py +0 -7
  591. agno-1.8.1/agno/models/ollama/chat.py +0 -349
  592. agno-1.8.1/agno/models/ollama/tools.py +0 -430
  593. agno-1.8.1/agno/models/openai/chat.py +0 -742
  594. agno-1.8.1/agno/models/openai/responses.py +0 -977
  595. agno-1.8.1/agno/models/perplexity/perplexity.py +0 -164
  596. agno-1.8.1/agno/models/portkey/portkey.py +0 -88
  597. agno-1.8.1/agno/models/qwen/__init__.py +0 -5
  598. agno-1.8.1/agno/models/response.py +0 -118
  599. agno-1.8.1/agno/models/vercel/__init__.py +0 -3
  600. agno-1.8.1/agno/models/vercel/v0.py +0 -26
  601. agno-1.8.1/agno/models/vllm/__init__.py +0 -3
  602. agno-1.8.1/agno/models/vllm/vllm.py +0 -77
  603. agno-1.8.1/agno/models/xai/xai.py +0 -112
  604. agno-1.8.1/agno/playground/__init__.py +0 -10
  605. agno-1.8.1/agno/playground/deploy.py +0 -3
  606. agno-1.8.1/agno/playground/playground.py +0 -3
  607. agno-1.8.1/agno/playground/serve.py +0 -3
  608. agno-1.8.1/agno/playground/settings.py +0 -3
  609. agno-1.8.1/agno/reasoning/azure_ai_foundry.py +0 -67
  610. agno-1.8.1/agno/reasoning/deepseek.py +0 -63
  611. agno-1.8.1/agno/reasoning/default.py +0 -100
  612. agno-1.8.1/agno/reasoning/groq.py +0 -71
  613. agno-1.8.1/agno/reasoning/helpers.py +0 -65
  614. agno-1.8.1/agno/reasoning/ollama.py +0 -67
  615. agno-1.8.1/agno/reasoning/openai.py +0 -81
  616. agno-1.8.1/agno/reranker/__init__.py +0 -0
  617. agno-1.8.1/agno/reranker/base.py +0 -14
  618. agno-1.8.1/agno/reranker/cohere.py +0 -64
  619. agno-1.8.1/agno/reranker/infinity.py +0 -195
  620. agno-1.8.1/agno/reranker/sentence_transformer.py +0 -54
  621. agno-1.8.1/agno/run/__init__.py +0 -0
  622. agno-1.8.1/agno/run/base.py +0 -214
  623. agno-1.8.1/agno/run/response.py +0 -467
  624. agno-1.8.1/agno/run/team.py +0 -465
  625. agno-1.8.1/agno/run/v2/__init__.py +0 -0
  626. agno-1.8.1/agno/run/v2/workflow.py +0 -567
  627. agno-1.8.1/agno/run/workflow.py +0 -59
  628. agno-1.8.1/agno/storage/__init__.py +0 -0
  629. agno-1.8.1/agno/storage/agent/__init__.py +0 -0
  630. agno-1.8.1/agno/storage/agent/dynamodb.py +0 -1
  631. agno-1.8.1/agno/storage/agent/json.py +0 -1
  632. agno-1.8.1/agno/storage/agent/mongodb.py +0 -1
  633. agno-1.8.1/agno/storage/agent/postgres.py +0 -1
  634. agno-1.8.1/agno/storage/agent/singlestore.py +0 -1
  635. agno-1.8.1/agno/storage/agent/sqlite.py +0 -1
  636. agno-1.8.1/agno/storage/agent/yaml.py +0 -1
  637. agno-1.8.1/agno/storage/base.py +0 -60
  638. agno-1.8.1/agno/storage/dynamodb.py +0 -673
  639. agno-1.8.1/agno/storage/firestore.py +0 -297
  640. agno-1.8.1/agno/storage/gcs_json.py +0 -261
  641. agno-1.8.1/agno/storage/in_memory.py +0 -234
  642. agno-1.8.1/agno/storage/json.py +0 -237
  643. agno-1.8.1/agno/storage/mongodb.py +0 -328
  644. agno-1.8.1/agno/storage/mysql.py +0 -685
  645. agno-1.8.1/agno/storage/postgres.py +0 -682
  646. agno-1.8.1/agno/storage/redis.py +0 -336
  647. agno-1.8.1/agno/storage/session/__init__.py +0 -16
  648. agno-1.8.1/agno/storage/session/agent.py +0 -64
  649. agno-1.8.1/agno/storage/session/team.py +0 -63
  650. agno-1.8.1/agno/storage/session/v2/__init__.py +0 -5
  651. agno-1.8.1/agno/storage/session/v2/workflow.py +0 -113
  652. agno-1.8.1/agno/storage/session/workflow.py +0 -61
  653. agno-1.8.1/agno/storage/singlestore.py +0 -606
  654. agno-1.8.1/agno/storage/sqlite.py +0 -646
  655. agno-1.8.1/agno/storage/workflow/__init__.py +0 -0
  656. agno-1.8.1/agno/storage/workflow/mongodb.py +0 -1
  657. agno-1.8.1/agno/storage/workflow/postgres.py +0 -1
  658. agno-1.8.1/agno/storage/workflow/sqlite.py +0 -1
  659. agno-1.8.1/agno/storage/yaml.py +0 -241
  660. agno-1.8.1/agno/team/__init__.py +0 -38
  661. agno-1.8.1/agno/team/team.py +0 -8215
  662. agno-1.8.1/agno/tools/agentql.py +0 -111
  663. agno-1.8.1/agno/tools/airflow.py +0 -64
  664. agno-1.8.1/agno/tools/api.py +0 -118
  665. agno-1.8.1/agno/tools/apify.py +0 -358
  666. agno-1.8.1/agno/tools/arxiv.py +0 -122
  667. agno-1.8.1/agno/tools/aws_lambda.py +0 -51
  668. agno-1.8.1/agno/tools/aws_ses.py +0 -60
  669. agno-1.8.1/agno/tools/baidusearch.py +0 -86
  670. agno-1.8.1/agno/tools/bitbucket.py +0 -292
  671. agno-1.8.1/agno/tools/brandfetch.py +0 -210
  672. agno-1.8.1/agno/tools/bravesearch.py +0 -103
  673. agno-1.8.1/agno/tools/brightdata.py +0 -347
  674. agno-1.8.1/agno/tools/browserbase.py +0 -200
  675. agno-1.8.1/agno/tools/calcom.py +0 -253
  676. agno-1.8.1/agno/tools/calculator.py +0 -168
  677. agno-1.8.1/agno/tools/cartesia.py +0 -184
  678. agno-1.8.1/agno/tools/clickup_tool.py +0 -257
  679. agno-1.8.1/agno/tools/confluence.py +0 -240
  680. agno-1.8.1/agno/tools/crawl4ai.py +0 -152
  681. agno-1.8.1/agno/tools/csv_toolkit.py +0 -184
  682. agno-1.8.1/agno/tools/dalle.py +0 -102
  683. agno-1.8.1/agno/tools/daytona.py +0 -478
  684. agno-1.8.1/agno/tools/decorator.py +0 -257
  685. agno-1.8.1/agno/tools/desi_vocal.py +0 -99
  686. agno-1.8.1/agno/tools/discord.py +0 -158
  687. agno-1.8.1/agno/tools/docker.py +0 -728
  688. agno-1.8.1/agno/tools/duckdb.py +0 -398
  689. agno-1.8.1/agno/tools/duckduckgo.py +0 -86
  690. agno-1.8.1/agno/tools/e2b.py +0 -696
  691. agno-1.8.1/agno/tools/eleven_labs.py +0 -191
  692. agno-1.8.1/agno/tools/email.py +0 -64
  693. agno-1.8.1/agno/tools/evm.py +0 -123
  694. agno-1.8.1/agno/tools/exa.py +0 -386
  695. agno-1.8.1/agno/tools/fal.py +0 -127
  696. agno-1.8.1/agno/tools/file.py +0 -109
  697. agno-1.8.1/agno/tools/financial_datasets.py +0 -307
  698. agno-1.8.1/agno/tools/firecrawl.py +0 -143
  699. agno-1.8.1/agno/tools/function.py +0 -858
  700. agno-1.8.1/agno/tools/giphy.py +0 -81
  701. agno-1.8.1/agno/tools/github.py +0 -1838
  702. agno-1.8.1/agno/tools/gmail.py +0 -714
  703. agno-1.8.1/agno/tools/google_bigquery.py +0 -116
  704. agno-1.8.1/agno/tools/google_maps.py +0 -268
  705. agno-1.8.1/agno/tools/googlesearch.py +0 -93
  706. agno-1.8.1/agno/tools/googlesheets.py +0 -358
  707. agno-1.8.1/agno/tools/hackernews.py +0 -73
  708. agno-1.8.1/agno/tools/jina.py +0 -100
  709. agno-1.8.1/agno/tools/jira.py +0 -141
  710. agno-1.8.1/agno/tools/knowledge.py +0 -219
  711. agno-1.8.1/agno/tools/linear.py +0 -441
  712. agno-1.8.1/agno/tools/linkup.py +0 -54
  713. agno-1.8.1/agno/tools/local_file_system.py +0 -87
  714. agno-1.8.1/agno/tools/lumalab.py +0 -171
  715. agno-1.8.1/agno/tools/mcp.py +0 -611
  716. agno-1.8.1/agno/tools/mem0.py +0 -193
  717. agno-1.8.1/agno/tools/memori.py +0 -387
  718. agno-1.8.1/agno/tools/mlx_transcribe.py +0 -138
  719. agno-1.8.1/agno/tools/models/__init__.py +0 -0
  720. agno-1.8.1/agno/tools/models/azure_openai.py +0 -172
  721. agno-1.8.1/agno/tools/models/gemini.py +0 -176
  722. agno-1.8.1/agno/tools/models/groq.py +0 -151
  723. agno-1.8.1/agno/tools/models/nebius.py +0 -108
  724. agno-1.8.1/agno/tools/models_labs.py +0 -171
  725. agno-1.8.1/agno/tools/moviepy_video.py +0 -348
  726. agno-1.8.1/agno/tools/neo4j.py +0 -132
  727. agno-1.8.1/agno/tools/newspaper.py +0 -41
  728. agno-1.8.1/agno/tools/newspaper4k.py +0 -88
  729. agno-1.8.1/agno/tools/openai.py +0 -176
  730. agno-1.8.1/agno/tools/openbb.py +0 -159
  731. agno-1.8.1/agno/tools/opencv.py +0 -305
  732. agno-1.8.1/agno/tools/openweather.py +0 -231
  733. agno-1.8.1/agno/tools/pandas.py +0 -94
  734. agno-1.8.1/agno/tools/postgres.py +0 -265
  735. agno-1.8.1/agno/tools/pubmed.py +0 -185
  736. agno-1.8.1/agno/tools/python.py +0 -218
  737. agno-1.8.1/agno/tools/reasoning.py +0 -275
  738. agno-1.8.1/agno/tools/reddit.py +0 -482
  739. agno-1.8.1/agno/tools/replicate.py +0 -104
  740. agno-1.8.1/agno/tools/resend.py +0 -59
  741. agno-1.8.1/agno/tools/scrapegraph.py +0 -194
  742. agno-1.8.1/agno/tools/searxng.py +0 -165
  743. agno-1.8.1/agno/tools/serpapi.py +0 -113
  744. agno-1.8.1/agno/tools/serper.py +0 -246
  745. agno-1.8.1/agno/tools/shell.py +0 -46
  746. agno-1.8.1/agno/tools/slack.py +0 -120
  747. agno-1.8.1/agno/tools/sleep.py +0 -19
  748. agno-1.8.1/agno/tools/spider.py +0 -96
  749. agno-1.8.1/agno/tools/sql.py +0 -153
  750. agno-1.8.1/agno/tools/streamlit/__init__.py +0 -0
  751. agno-1.8.1/agno/tools/tavily.py +0 -106
  752. agno-1.8.1/agno/tools/telegram.py +0 -40
  753. agno-1.8.1/agno/tools/thinking.py +0 -73
  754. agno-1.8.1/agno/tools/todoist.py +0 -238
  755. agno-1.8.1/agno/tools/toolkit.py +0 -146
  756. agno-1.8.1/agno/tools/trafilatura.py +0 -372
  757. agno-1.8.1/agno/tools/trello.py +0 -287
  758. agno-1.8.1/agno/tools/twilio.py +0 -179
  759. agno-1.8.1/agno/tools/user_control_flow.py +0 -73
  760. agno-1.8.1/agno/tools/valyu.py +0 -199
  761. agno-1.8.1/agno/tools/visualization.py +0 -476
  762. agno-1.8.1/agno/tools/webbrowser.py +0 -27
  763. agno-1.8.1/agno/tools/webex.py +0 -72
  764. agno-1.8.1/agno/tools/website.py +0 -85
  765. agno-1.8.1/agno/tools/webtools.py +0 -37
  766. agno-1.8.1/agno/tools/whatsapp.py +0 -290
  767. agno-1.8.1/agno/tools/wikipedia.py +0 -56
  768. agno-1.8.1/agno/tools/x.py +0 -334
  769. agno-1.8.1/agno/tools/yfinance.py +0 -284
  770. agno-1.8.1/agno/tools/youtube.py +0 -178
  771. agno-1.8.1/agno/tools/zendesk.py +0 -77
  772. agno-1.8.1/agno/tools/zep.py +0 -451
  773. agno-1.8.1/agno/tools/zoom.py +0 -381
  774. agno-1.8.1/agno/utils/__init__.py +0 -0
  775. agno-1.8.1/agno/utils/common.py +0 -61
  776. agno-1.8.1/agno/utils/defaults.py +0 -57
  777. agno-1.8.1/agno/utils/events.py +0 -504
  778. agno-1.8.1/agno/utils/filesystem.py +0 -39
  779. agno-1.8.1/agno/utils/gemini.py +0 -238
  780. agno-1.8.1/agno/utils/git.py +0 -52
  781. agno-1.8.1/agno/utils/json_io.py +0 -30
  782. agno-1.8.1/agno/utils/load_env.py +0 -19
  783. agno-1.8.1/agno/utils/log.py +0 -204
  784. agno-1.8.1/agno/utils/mcp.py +0 -66
  785. agno-1.8.1/agno/utils/media.py +0 -146
  786. agno-1.8.1/agno/utils/message.py +0 -47
  787. agno-1.8.1/agno/utils/models/__init__.py +0 -0
  788. agno-1.8.1/agno/utils/models/aws_claude.py +0 -170
  789. agno-1.8.1/agno/utils/models/claude.py +0 -286
  790. agno-1.8.1/agno/utils/models/cohere.py +0 -87
  791. agno-1.8.1/agno/utils/models/mistral.py +0 -97
  792. agno-1.8.1/agno/utils/models/schema_utils.py +0 -153
  793. agno-1.8.1/agno/utils/models/watsonx.py +0 -41
  794. agno-1.8.1/agno/utils/openai.py +0 -257
  795. agno-1.8.1/agno/utils/pprint.py +0 -177
  796. agno-1.8.1/agno/utils/prompts.py +0 -111
  797. agno-1.8.1/agno/utils/py_io.py +0 -19
  798. agno-1.8.1/agno/utils/pyproject.py +0 -18
  799. agno-1.8.1/agno/utils/resource_filter.py +0 -31
  800. agno-1.8.1/agno/utils/response.py +0 -163
  801. agno-1.8.1/agno/utils/string.py +0 -204
  802. agno-1.8.1/agno/utils/timer.py +0 -41
  803. agno-1.8.1/agno/vectordb/base.py +0 -96
  804. agno-1.8.1/agno/vectordb/cassandra/cassandra.py +0 -181
  805. agno-1.8.1/agno/vectordb/chroma/chromadb.py +0 -362
  806. agno-1.8.1/agno/vectordb/clickhouse/clickhousedb.py +0 -575
  807. agno-1.8.1/agno/vectordb/couchbase/couchbase.py +0 -1071
  808. agno-1.8.1/agno/vectordb/lancedb/lance_db.py +0 -608
  809. agno-1.8.1/agno/vectordb/milvus/milvus.py +0 -855
  810. agno-1.8.1/agno/vectordb/mongodb/mongodb.py +0 -1136
  811. agno-1.8.1/agno/vectordb/pgvector/pgvector.py +0 -1059
  812. agno-1.8.1/agno/vectordb/pineconedb/pineconedb.py +0 -481
  813. agno-1.8.1/agno/vectordb/qdrant/qdrant.py +0 -728
  814. agno-1.8.1/agno/vectordb/singlestore/singlestore.py +0 -420
  815. agno-1.8.1/agno/vectordb/surrealdb/surrealdb.py +0 -493
  816. agno-1.8.1/agno/vectordb/upstashdb/upstashdb.py +0 -334
  817. agno-1.8.1/agno/vectordb/weaviate/weaviate.py +0 -872
  818. agno-1.8.1/agno/workflow/__init__.py +0 -17
  819. agno-1.8.1/agno/workflow/v2/__init__.py +0 -21
  820. agno-1.8.1/agno/workflow/v2/condition.py +0 -554
  821. agno-1.8.1/agno/workflow/v2/loop.py +0 -602
  822. agno-1.8.1/agno/workflow/v2/parallel.py +0 -659
  823. agno-1.8.1/agno/workflow/v2/router.py +0 -521
  824. agno-1.8.1/agno/workflow/v2/step.py +0 -865
  825. agno-1.8.1/agno/workflow/v2/steps.py +0 -465
  826. agno-1.8.1/agno/workflow/v2/types.py +0 -357
  827. agno-1.8.1/agno/workflow/v2/workflow.py +0 -3312
  828. agno-1.8.1/agno/workflow/workflow.py +0 -807
  829. agno-1.8.1/agno/workspace/__init__.py +0 -0
  830. agno-1.8.1/agno/workspace/config.py +0 -325
  831. agno-1.8.1/agno/workspace/enums.py +0 -6
  832. agno-1.8.1/agno/workspace/helpers.py +0 -52
  833. agno-1.8.1/agno/workspace/operator.py +0 -757
  834. agno-1.8.1/agno/workspace/settings.py +0 -158
  835. agno-1.8.1/agno.egg-info/PKG-INFO +0 -982
  836. agno-1.8.1/agno.egg-info/SOURCES.txt +0 -569
  837. agno-1.8.1/agno.egg-info/entry_points.txt +0 -3
  838. agno-1.8.1/agno.egg-info/requires.txt +0 -413
  839. agno-1.8.1/pyproject.toml +0 -467
  840. {agno-1.8.1/agno → agno-2.0.0/agno/api}/__init__.py +0 -0
  841. {agno-1.8.1 → agno-2.0.0}/agno/api/schemas/response.py +0 -0
  842. {agno-1.8.1/agno/api → agno-2.0.0/agno/db/migrations}/__init__.py +0 -0
  843. /agno-1.8.1/agno/api/schemas/__init__.py → /agno-2.0.0/agno/db/schemas/metrics.py +0 -0
  844. {agno-1.8.1 → agno-2.0.0}/agno/debug.py +0 -0
  845. {agno-1.8.1 → agno-2.0.0}/agno/exceptions.py +0 -0
  846. {agno-1.8.1/agno/app → agno-2.0.0/agno/integrations}/__init__.py +0 -0
  847. {agno-1.8.1/agno/app/playground → agno-2.0.0/agno/knowledge/chunking}/__init__.py +0 -0
  848. {agno-1.8.1/agno/cli → agno-2.0.0/agno/knowledge/remote_content}/__init__.py +0 -0
  849. {agno-1.8.1/agno/cli/ws → agno-2.0.0/agno/knowledge/reranker}/__init__.py +0 -0
  850. {agno-1.8.1/agno/document/chunking → agno-2.0.0/agno/models}/__init__.py +0 -0
  851. {agno-1.8.1 → agno-2.0.0}/agno/models/anthropic/__init__.py +0 -0
  852. {agno-1.8.1 → agno-2.0.0}/agno/models/aws/__init__.py +0 -0
  853. {agno-1.8.1 → agno-2.0.0}/agno/models/azure/__init__.py +0 -0
  854. {agno-1.8.1 → agno-2.0.0}/agno/models/azure/openai_chat.py +0 -0
  855. {agno-1.8.1 → agno-2.0.0}/agno/models/cerebras/__init__.py +0 -0
  856. {agno-1.8.1 → agno-2.0.0}/agno/models/cerebras/cerebras_openai.py +0 -0
  857. {agno-1.8.1 → agno-2.0.0}/agno/models/cohere/__init__.py +0 -0
  858. {agno-1.8.1 → agno-2.0.0}/agno/models/dashscope/__init__.py +0 -0
  859. {agno-1.8.1 → agno-2.0.0}/agno/models/dashscope/dashscope.py +0 -0
  860. {agno-1.8.1 → agno-2.0.0}/agno/models/deepinfra/__init__.py +0 -0
  861. {agno-1.8.1 → agno-2.0.0}/agno/models/deepinfra/deepinfra.py +0 -0
  862. {agno-1.8.1 → agno-2.0.0}/agno/models/deepseek/__init__.py +0 -0
  863. {agno-1.8.1 → agno-2.0.0}/agno/models/deepseek/deepseek.py +0 -0
  864. {agno-1.8.1 → agno-2.0.0}/agno/models/defaults.py +0 -0
  865. {agno-1.8.1 → agno-2.0.0}/agno/models/fireworks/__init__.py +0 -0
  866. {agno-1.8.1 → agno-2.0.0}/agno/models/fireworks/fireworks.py +0 -0
  867. {agno-1.8.1 → agno-2.0.0}/agno/models/google/__init__.py +0 -0
  868. {agno-1.8.1 → agno-2.0.0}/agno/models/groq/__init__.py +0 -0
  869. {agno-1.8.1 → agno-2.0.0}/agno/models/huggingface/__init__.py +0 -0
  870. {agno-1.8.1 → agno-2.0.0}/agno/models/ibm/__init__.py +0 -0
  871. {agno-1.8.1 → agno-2.0.0}/agno/models/internlm/__init__.py +0 -0
  872. {agno-1.8.1 → agno-2.0.0}/agno/models/internlm/internlm.py +0 -0
  873. {agno-1.8.1 → agno-2.0.0}/agno/models/langdb/__init__.py +0 -0
  874. {agno-1.8.1 → agno-2.0.0}/agno/models/langdb/langdb.py +0 -0
  875. {agno-1.8.1 → agno-2.0.0}/agno/models/litellm/__init__.py +0 -0
  876. {agno-1.8.1 → agno-2.0.0}/agno/models/litellm/litellm_openai.py +0 -0
  877. {agno-1.8.1 → agno-2.0.0}/agno/models/lmstudio/__init__.py +0 -0
  878. {agno-1.8.1 → agno-2.0.0}/agno/models/lmstudio/lmstudio.py +0 -0
  879. {agno-1.8.1 → agno-2.0.0}/agno/models/meta/__init__.py +0 -0
  880. {agno-1.8.1 → agno-2.0.0}/agno/models/meta/llama_openai.py +0 -0
  881. {agno-1.8.1 → agno-2.0.0}/agno/models/mistral/__init__.py +0 -0
  882. {agno-1.8.1 → agno-2.0.0}/agno/models/nebius/__init__.py +0 -0
  883. {agno-1.8.1 → agno-2.0.0}/agno/models/nebius/nebius.py +0 -0
  884. {agno-1.8.1 → agno-2.0.0}/agno/models/nvidia/__init__.py +0 -0
  885. {agno-1.8.1 → agno-2.0.0}/agno/models/nvidia/nvidia.py +0 -0
  886. {agno-1.8.1 → agno-2.0.0}/agno/models/openai/__init__.py +0 -0
  887. {agno-1.8.1 → agno-2.0.0}/agno/models/openai/like.py +0 -0
  888. {agno-1.8.1 → agno-2.0.0}/agno/models/openrouter/__init__.py +0 -0
  889. {agno-1.8.1 → agno-2.0.0}/agno/models/openrouter/openrouter.py +0 -0
  890. {agno-1.8.1 → agno-2.0.0}/agno/models/perplexity/__init__.py +0 -0
  891. {agno-1.8.1 → agno-2.0.0}/agno/models/portkey/__init__.py +0 -0
  892. {agno-1.8.1 → agno-2.0.0}/agno/models/sambanova/__init__.py +0 -0
  893. {agno-1.8.1 → agno-2.0.0}/agno/models/sambanova/sambanova.py +0 -0
  894. {agno-1.8.1 → agno-2.0.0}/agno/models/together/__init__.py +0 -0
  895. {agno-1.8.1 → agno-2.0.0}/agno/models/together/together.py +0 -0
  896. {agno-1.8.1 → agno-2.0.0}/agno/models/xai/__init__.py +0 -0
  897. {agno-1.8.1/agno/document/reader/gcs → agno-2.0.0/agno/os/interfaces}/__init__.py +0 -0
  898. {agno-1.8.1/agno/app → agno-2.0.0/agno/os/interfaces}/slack/security.py +0 -0
  899. {agno-1.8.1/agno/app → agno-2.0.0/agno/os/interfaces}/whatsapp/security.py +0 -0
  900. {agno-1.8.1 → agno-2.0.0}/agno/py.typed +0 -0
  901. {agno-1.8.1/agno/document/reader/s3 → agno-2.0.0/agno/reasoning}/__init__.py +0 -0
  902. {agno-1.8.1 → agno-2.0.0}/agno/reasoning/step.py +0 -0
  903. {agno-1.8.1/agno/eval → agno-2.0.0/agno/run}/__init__.py +0 -0
  904. {agno-1.8.1 → agno-2.0.0}/agno/run/messages.py +0 -0
  905. {agno-1.8.1 → agno-2.0.0}/agno/tools/__init__.py +0 -0
  906. {agno-1.8.1 → agno-2.0.0}/agno/tools/googlecalendar.py +0 -0
  907. {agno-1.8.1/agno/file/local → agno-2.0.0/agno/tools/models}/__init__.py +0 -0
  908. {agno-1.8.1 → agno-2.0.0}/agno/tools/models/morph.py +0 -0
  909. {agno-1.8.1 → agno-2.0.0}/agno/tools/oxylabs.py +0 -0
  910. {agno-1.8.1/agno/infra → agno-2.0.0/agno/tools/streamlit}/__init__.py +0 -0
  911. {agno-1.8.1 → agno-2.0.0}/agno/tools/streamlit/components.py +0 -0
  912. {agno-1.8.1 → agno-2.0.0}/agno/tools/tool_registry.py +0 -0
  913. {agno-1.8.1/agno/knowledge/gcs → agno-2.0.0/agno/utils}/__init__.py +0 -0
  914. {agno-1.8.1 → agno-2.0.0}/agno/utils/audio.py +0 -0
  915. {agno-1.8.1 → agno-2.0.0}/agno/utils/certs.py +0 -0
  916. {agno-1.8.1 → agno-2.0.0}/agno/utils/code_execution.py +0 -0
  917. {agno-1.8.1 → agno-2.0.0}/agno/utils/dttm.py +0 -0
  918. {agno-1.8.1 → agno-2.0.0}/agno/utils/enum.py +0 -0
  919. {agno-1.8.1 → agno-2.0.0}/agno/utils/env.py +0 -0
  920. {agno-1.8.1 → agno-2.0.0}/agno/utils/format_str.py +0 -0
  921. {agno-1.8.1 → agno-2.0.0}/agno/utils/functions.py +0 -0
  922. {agno-1.8.1 → agno-2.0.0}/agno/utils/http.py +0 -0
  923. {agno-1.8.1 → agno-2.0.0}/agno/utils/json_schema.py +0 -0
  924. {agno-1.8.1 → agno-2.0.0}/agno/utils/location.py +0 -0
  925. {agno-1.8.1 → agno-2.0.0}/agno/utils/merge_dict.py +0 -0
  926. {agno-1.8.1/agno/knowledge/s3 → agno-2.0.0/agno/utils/models}/__init__.py +0 -0
  927. {agno-1.8.1 → agno-2.0.0}/agno/utils/models/ai_foundry.py +0 -0
  928. {agno-1.8.1 → agno-2.0.0}/agno/utils/models/llama.py +0 -0
  929. {agno-1.8.1 → agno-2.0.0}/agno/utils/models/openai_responses.py +0 -0
  930. {agno-1.8.1 → agno-2.0.0}/agno/utils/pickle.py +0 -0
  931. {agno-1.8.1/agno/models → agno-2.0.0/agno/utils/print_response}/__init__.py +0 -0
  932. {agno-1.8.1 → agno-2.0.0}/agno/utils/response_iterator.py +0 -0
  933. {agno-1.8.1 → agno-2.0.0}/agno/utils/safe_formatter.py +0 -0
  934. {agno-1.8.1 → agno-2.0.0}/agno/utils/shell.py +0 -0
  935. {agno-1.8.1 → agno-2.0.0}/agno/utils/tools.py +0 -0
  936. {agno-1.8.1 → agno-2.0.0}/agno/utils/web.py +0 -0
  937. {agno-1.8.1 → agno-2.0.0}/agno/utils/whatsapp.py +0 -0
  938. {agno-1.8.1 → agno-2.0.0}/agno/utils/yaml_io.py +0 -0
  939. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/__init__.py +0 -0
  940. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/cassandra/__init__.py +0 -0
  941. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/cassandra/extra_param_mixin.py +0 -0
  942. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/cassandra/index.py +0 -0
  943. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/chroma/__init__.py +0 -0
  944. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/clickhouse/__init__.py +0 -0
  945. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/clickhouse/index.py +0 -0
  946. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/couchbase/__init__.py +0 -0
  947. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/distance.py +0 -0
  948. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/lancedb/__init__.py +0 -0
  949. {agno-1.8.1/agno/reasoning → agno-2.0.0/agno/vectordb/llamaindex}/__init__.py +0 -0
  950. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/milvus/__init__.py +0 -0
  951. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/mongodb/__init__.py +0 -0
  952. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/pgvector/__init__.py +0 -0
  953. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/pgvector/index.py +0 -0
  954. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/pineconedb/__init__.py +0 -0
  955. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/qdrant/__init__.py +0 -0
  956. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/search.py +0 -0
  957. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/singlestore/__init__.py +0 -0
  958. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/singlestore/index.py +0 -0
  959. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/surrealdb/__init__.py +0 -0
  960. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/upstashdb/__init__.py +0 -0
  961. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/weaviate/__init__.py +0 -0
  962. {agno-1.8.1 → agno-2.0.0}/agno/vectordb/weaviate/index.py +0 -0
  963. {agno-1.8.1 → agno-2.0.0}/agno.egg-info/dependency_links.txt +0 -0
  964. {agno-1.8.1 → agno-2.0.0}/agno.egg-info/top_level.txt +0 -0
  965. {agno-1.8.1 → agno-2.0.0}/setup.cfg +0 -0
agno-2.0.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.