agno 1.5.1__tar.gz → 2.2.12__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 (952) hide show
  1. agno-2.2.12/LICENSE +201 -0
  2. agno-2.2.12/PKG-INFO +614 -0
  3. agno-2.2.12/README.md +231 -0
  4. agno-2.2.12/agno/__init__.py +8 -0
  5. agno-2.2.12/agno/agent/__init__.py +51 -0
  6. agno-2.2.12/agno/agent/agent.py +10405 -0
  7. agno-2.2.12/agno/api/agent.py +28 -0
  8. agno-2.2.12/agno/api/api.py +40 -0
  9. agno-2.2.12/agno/api/evals.py +22 -0
  10. agno-2.2.12/agno/api/os.py +17 -0
  11. agno-2.2.12/agno/api/routes.py +13 -0
  12. agno-2.2.12/agno/api/schemas/__init__.py +9 -0
  13. agno-2.2.12/agno/api/schemas/agent.py +16 -0
  14. agno-2.2.12/agno/api/schemas/evals.py +16 -0
  15. agno-2.2.12/agno/api/schemas/os.py +14 -0
  16. agno-2.2.12/agno/api/schemas/team.py +16 -0
  17. agno-2.2.12/agno/api/schemas/utils.py +21 -0
  18. agno-2.2.12/agno/api/schemas/workflows.py +16 -0
  19. agno-2.2.12/agno/api/settings.py +53 -0
  20. agno-2.2.12/agno/api/team.py +30 -0
  21. agno-2.2.12/agno/api/workflow.py +28 -0
  22. agno-2.2.12/agno/cloud/aws/base.py +214 -0
  23. agno-2.2.12/agno/cloud/aws/s3/__init__.py +2 -0
  24. agno-2.2.12/agno/cloud/aws/s3/api_client.py +43 -0
  25. agno-2.2.12/agno/cloud/aws/s3/bucket.py +195 -0
  26. agno-2.2.12/agno/cloud/aws/s3/object.py +57 -0
  27. agno-2.2.12/agno/culture/__init__.py +3 -0
  28. agno-2.2.12/agno/culture/manager.py +956 -0
  29. agno-2.2.12/agno/db/__init__.py +24 -0
  30. agno-2.2.12/agno/db/async_postgres/__init__.py +3 -0
  31. agno-2.2.12/agno/db/base.py +598 -0
  32. agno-2.2.12/agno/db/dynamo/__init__.py +3 -0
  33. agno-2.2.12/agno/db/dynamo/dynamo.py +2042 -0
  34. agno-2.2.12/agno/db/dynamo/schemas.py +314 -0
  35. agno-2.2.12/agno/db/dynamo/utils.py +743 -0
  36. agno-2.2.12/agno/db/firestore/__init__.py +3 -0
  37. agno-2.2.12/agno/db/firestore/firestore.py +1795 -0
  38. agno-2.2.12/agno/db/firestore/schemas.py +140 -0
  39. agno-2.2.12/agno/db/firestore/utils.py +376 -0
  40. agno-2.2.12/agno/db/gcs_json/__init__.py +3 -0
  41. agno-2.2.12/agno/db/gcs_json/gcs_json_db.py +1335 -0
  42. agno-2.2.12/agno/db/gcs_json/utils.py +228 -0
  43. agno-2.2.12/agno/db/in_memory/__init__.py +3 -0
  44. agno-2.2.12/agno/db/in_memory/in_memory_db.py +1160 -0
  45. agno-2.2.12/agno/db/in_memory/utils.py +230 -0
  46. agno-2.2.12/agno/db/json/__init__.py +3 -0
  47. agno-2.2.12/agno/db/json/json_db.py +1328 -0
  48. agno-2.2.12/agno/db/json/utils.py +230 -0
  49. agno-2.2.12/agno/db/migrations/v1_to_v2.py +635 -0
  50. agno-2.2.12/agno/db/mongo/__init__.py +17 -0
  51. agno-2.2.12/agno/db/mongo/async_mongo.py +2026 -0
  52. agno-2.2.12/agno/db/mongo/mongo.py +1982 -0
  53. agno-2.2.12/agno/db/mongo/schemas.py +87 -0
  54. agno-2.2.12/agno/db/mongo/utils.py +259 -0
  55. agno-2.2.12/agno/db/mysql/__init__.py +3 -0
  56. agno-2.2.12/agno/db/mysql/mysql.py +2308 -0
  57. agno-2.2.12/agno/db/mysql/schemas.py +138 -0
  58. agno-2.2.12/agno/db/mysql/utils.py +355 -0
  59. agno-2.2.12/agno/db/postgres/__init__.py +4 -0
  60. agno-2.2.12/agno/db/postgres/async_postgres.py +1927 -0
  61. agno-2.2.12/agno/db/postgres/postgres.py +2260 -0
  62. agno-2.2.12/agno/db/postgres/schemas.py +139 -0
  63. agno-2.2.12/agno/db/postgres/utils.py +442 -0
  64. agno-2.2.12/agno/db/redis/__init__.py +3 -0
  65. agno-2.2.12/agno/db/redis/redis.py +1660 -0
  66. agno-2.2.12/agno/db/redis/schemas.py +123 -0
  67. agno-2.2.12/agno/db/redis/utils.py +346 -0
  68. agno-2.2.12/agno/db/schemas/__init__.py +4 -0
  69. agno-2.2.12/agno/db/schemas/culture.py +120 -0
  70. agno-2.2.12/agno/db/schemas/evals.py +33 -0
  71. agno-2.2.12/agno/db/schemas/knowledge.py +40 -0
  72. agno-2.2.12/agno/db/schemas/memory.py +46 -0
  73. agno-2.2.12/agno/db/singlestore/__init__.py +3 -0
  74. agno-2.2.12/agno/db/singlestore/schemas.py +130 -0
  75. agno-2.2.12/agno/db/singlestore/singlestore.py +2272 -0
  76. agno-2.2.12/agno/db/singlestore/utils.py +384 -0
  77. agno-2.2.12/agno/db/sqlite/__init__.py +4 -0
  78. agno-2.2.12/agno/db/sqlite/async_sqlite.py +2293 -0
  79. agno-2.2.12/agno/db/sqlite/schemas.py +133 -0
  80. agno-2.2.12/agno/db/sqlite/sqlite.py +2288 -0
  81. agno-2.2.12/agno/db/sqlite/utils.py +431 -0
  82. agno-2.2.12/agno/db/surrealdb/__init__.py +3 -0
  83. agno-2.2.12/agno/db/surrealdb/metrics.py +292 -0
  84. agno-2.2.12/agno/db/surrealdb/models.py +309 -0
  85. agno-2.2.12/agno/db/surrealdb/queries.py +71 -0
  86. agno-2.2.12/agno/db/surrealdb/surrealdb.py +1353 -0
  87. agno-2.2.12/agno/db/surrealdb/utils.py +147 -0
  88. agno-2.2.12/agno/db/utils.py +116 -0
  89. agno-2.2.12/agno/eval/__init__.py +14 -0
  90. agno-2.2.12/agno/eval/accuracy.py +834 -0
  91. agno-2.2.12/agno/eval/performance.py +773 -0
  92. agno-2.2.12/agno/eval/reliability.py +306 -0
  93. agno-2.2.12/agno/eval/utils.py +119 -0
  94. agno-2.2.12/agno/exceptions.py +161 -0
  95. agno-2.2.12/agno/filters.py +354 -0
  96. agno-2.2.12/agno/guardrails/__init__.py +6 -0
  97. agno-2.2.12/agno/guardrails/base.py +19 -0
  98. agno-2.2.12/agno/guardrails/openai.py +144 -0
  99. agno-2.2.12/agno/guardrails/pii.py +94 -0
  100. agno-2.2.12/agno/guardrails/prompt_injection.py +52 -0
  101. agno-2.2.12/agno/integrations/discord/__init__.py +3 -0
  102. agno-2.2.12/agno/integrations/discord/client.py +203 -0
  103. agno-2.2.12/agno/knowledge/__init__.py +5 -0
  104. agno-2.2.12/agno/knowledge/chunking/agentic.py +79 -0
  105. agno-2.2.12/agno/knowledge/chunking/document.py +91 -0
  106. agno-2.2.12/agno/knowledge/chunking/fixed.py +57 -0
  107. agno-2.2.12/agno/knowledge/chunking/markdown.py +151 -0
  108. agno-2.2.12/agno/knowledge/chunking/recursive.py +63 -0
  109. agno-2.2.12/agno/knowledge/chunking/row.py +39 -0
  110. agno-2.2.12/agno/knowledge/chunking/semantic.py +86 -0
  111. agno-2.2.12/agno/knowledge/chunking/strategy.py +165 -0
  112. agno-2.2.12/agno/knowledge/content.py +74 -0
  113. agno-2.2.12/agno/knowledge/document/__init__.py +5 -0
  114. agno-2.2.12/agno/knowledge/document/base.py +58 -0
  115. agno-2.2.12/agno/knowledge/embedder/__init__.py +5 -0
  116. agno-2.2.12/agno/knowledge/embedder/aws_bedrock.py +343 -0
  117. agno-2.2.12/agno/knowledge/embedder/azure_openai.py +210 -0
  118. agno-2.2.12/agno/knowledge/embedder/base.py +23 -0
  119. agno-2.2.12/agno/knowledge/embedder/cohere.py +323 -0
  120. agno-2.2.12/agno/knowledge/embedder/fastembed.py +62 -0
  121. agno-2.2.12/agno/knowledge/embedder/fireworks.py +13 -0
  122. agno-2.2.12/agno/knowledge/embedder/google.py +258 -0
  123. agno-2.2.12/agno/knowledge/embedder/huggingface.py +94 -0
  124. agno-2.2.12/agno/knowledge/embedder/jina.py +182 -0
  125. agno-2.2.12/agno/knowledge/embedder/langdb.py +22 -0
  126. agno-2.2.12/agno/knowledge/embedder/mistral.py +206 -0
  127. agno-2.2.12/agno/knowledge/embedder/nebius.py +13 -0
  128. agno-2.2.12/agno/knowledge/embedder/ollama.py +154 -0
  129. agno-2.2.12/agno/knowledge/embedder/openai.py +195 -0
  130. agno-2.2.12/agno/knowledge/embedder/sentence_transformer.py +63 -0
  131. agno-2.2.12/agno/knowledge/embedder/together.py +13 -0
  132. agno-2.2.12/agno/knowledge/embedder/vllm.py +262 -0
  133. agno-2.2.12/agno/knowledge/embedder/voyageai.py +165 -0
  134. agno-2.2.12/agno/knowledge/knowledge.py +1988 -0
  135. agno-2.2.12/agno/knowledge/reader/__init__.py +7 -0
  136. agno-2.2.12/agno/knowledge/reader/arxiv_reader.py +81 -0
  137. agno-2.2.12/agno/knowledge/reader/base.py +95 -0
  138. agno-2.2.12/agno/knowledge/reader/csv_reader.py +166 -0
  139. agno-2.2.12/agno/knowledge/reader/docx_reader.py +82 -0
  140. agno-2.2.12/agno/knowledge/reader/field_labeled_csv_reader.py +292 -0
  141. agno-2.2.12/agno/knowledge/reader/firecrawl_reader.py +201 -0
  142. agno-2.2.12/agno/knowledge/reader/json_reader.py +87 -0
  143. agno-2.2.12/agno/knowledge/reader/markdown_reader.py +137 -0
  144. agno-2.2.12/agno/knowledge/reader/pdf_reader.py +431 -0
  145. agno-2.2.12/agno/knowledge/reader/pptx_reader.py +101 -0
  146. agno-2.2.12/agno/knowledge/reader/reader_factory.py +313 -0
  147. agno-2.2.12/agno/knowledge/reader/s3_reader.py +89 -0
  148. agno-2.2.12/agno/knowledge/reader/tavily_reader.py +194 -0
  149. agno-2.2.12/agno/knowledge/reader/text_reader.py +115 -0
  150. agno-2.2.12/agno/knowledge/reader/web_search_reader.py +372 -0
  151. agno-2.2.12/agno/knowledge/reader/website_reader.py +455 -0
  152. agno-2.2.12/agno/knowledge/reader/wikipedia_reader.py +59 -0
  153. agno-2.2.12/agno/knowledge/reader/youtube_reader.py +78 -0
  154. agno-2.2.12/agno/knowledge/remote_content/remote_content.py +88 -0
  155. agno-2.2.12/agno/knowledge/reranker/__init__.py +3 -0
  156. agno-2.2.12/agno/knowledge/reranker/base.py +14 -0
  157. agno-2.2.12/agno/knowledge/reranker/cohere.py +64 -0
  158. agno-2.2.12/agno/knowledge/reranker/infinity.py +195 -0
  159. agno-2.2.12/agno/knowledge/reranker/sentence_transformer.py +54 -0
  160. agno-2.2.12/agno/knowledge/types.py +39 -0
  161. agno-2.2.12/agno/knowledge/utils.py +189 -0
  162. agno-2.2.12/agno/media.py +462 -0
  163. agno-2.2.12/agno/memory/__init__.py +3 -0
  164. agno-2.2.12/agno/memory/manager.py +1327 -0
  165. agno-2.2.12/agno/models/aimlapi/__init__.py +5 -0
  166. agno-2.2.12/agno/models/aimlapi/aimlapi.py +45 -0
  167. agno-2.2.12/agno/models/anthropic/claude.py +757 -0
  168. agno-2.2.12/agno/models/aws/bedrock.py +701 -0
  169. agno-2.2.12/agno/models/aws/claude.py +378 -0
  170. agno-2.2.12/agno/models/azure/__init__.py +18 -0
  171. agno-2.2.12/agno/models/azure/ai_foundry.py +485 -0
  172. agno-2.2.12/agno/models/azure/openai_chat.py +131 -0
  173. agno-2.2.12/agno/models/base.py +2175 -0
  174. agno-2.2.12/agno/models/cerebras/cerebras.py +501 -0
  175. agno-2.2.12/agno/models/cerebras/cerebras_openai.py +112 -0
  176. agno-2.2.12/agno/models/cohere/chat.py +389 -0
  177. agno-2.2.12/agno/models/cometapi/__init__.py +5 -0
  178. agno-2.2.12/agno/models/cometapi/cometapi.py +57 -0
  179. agno-2.2.12/agno/models/dashscope/__init__.py +5 -0
  180. agno-2.2.12/agno/models/dashscope/dashscope.py +91 -0
  181. agno-2.2.12/agno/models/deepinfra/deepinfra.py +28 -0
  182. agno-2.2.12/agno/models/deepseek/deepseek.py +61 -0
  183. agno-2.2.12/agno/models/fireworks/fireworks.py +26 -0
  184. agno-2.2.12/agno/models/google/gemini.py +1085 -0
  185. agno-2.2.12/agno/models/groq/groq.py +556 -0
  186. agno-2.2.12/agno/models/huggingface/huggingface.py +491 -0
  187. agno-2.2.12/agno/models/ibm/watsonx.py +422 -0
  188. agno-2.2.12/agno/models/internlm/internlm.py +26 -0
  189. agno-2.2.12/agno/models/langdb/__init__.py +1 -0
  190. agno-2.2.12/agno/models/langdb/langdb.py +48 -0
  191. agno-2.2.12/agno/models/litellm/chat.py +468 -0
  192. agno-2.2.12/agno/models/litellm/litellm_openai.py +25 -0
  193. agno-2.2.12/agno/models/llama_cpp/__init__.py +5 -0
  194. agno-2.2.12/agno/models/llama_cpp/llama_cpp.py +22 -0
  195. agno-2.2.12/agno/models/message.py +434 -0
  196. agno-2.2.12/agno/models/meta/llama.py +475 -0
  197. agno-2.2.12/agno/models/meta/llama_openai.py +78 -0
  198. agno-2.2.12/agno/models/metrics.py +120 -0
  199. agno-2.2.12/agno/models/mistral/mistral.py +432 -0
  200. agno-2.2.12/agno/models/nebius/nebius.py +54 -0
  201. agno-2.2.12/agno/models/nexus/__init__.py +3 -0
  202. agno-2.2.12/agno/models/nexus/nexus.py +22 -0
  203. agno-2.2.12/agno/models/nvidia/nvidia.py +28 -0
  204. agno-2.2.12/agno/models/ollama/__init__.py +5 -0
  205. agno-2.2.12/agno/models/ollama/chat.py +441 -0
  206. agno-2.2.12/agno/models/openai/chat.py +883 -0
  207. agno-2.2.12/agno/models/openai/like.py +27 -0
  208. agno-2.2.12/agno/models/openai/responses.py +1050 -0
  209. agno-2.2.12/agno/models/openrouter/openrouter.py +66 -0
  210. agno-2.2.12/agno/models/perplexity/perplexity.py +187 -0
  211. agno-2.2.12/agno/models/portkey/__init__.py +3 -0
  212. agno-2.2.12/agno/models/portkey/portkey.py +81 -0
  213. agno-2.2.12/agno/models/requesty/__init__.py +5 -0
  214. agno-2.2.12/agno/models/requesty/requesty.py +52 -0
  215. agno-2.2.12/agno/models/response.py +199 -0
  216. agno-2.2.12/agno/models/sambanova/sambanova.py +28 -0
  217. agno-2.2.12/agno/models/siliconflow/__init__.py +5 -0
  218. agno-2.2.12/agno/models/siliconflow/siliconflow.py +25 -0
  219. agno-2.2.12/agno/models/together/together.py +25 -0
  220. agno-2.2.12/agno/models/utils.py +266 -0
  221. agno-2.2.12/agno/models/vercel/__init__.py +3 -0
  222. agno-2.2.12/agno/models/vercel/v0.py +26 -0
  223. agno-2.2.12/agno/models/vertexai/claude.py +70 -0
  224. agno-2.2.12/agno/models/vllm/__init__.py +3 -0
  225. agno-2.2.12/agno/models/vllm/vllm.py +78 -0
  226. agno-2.2.12/agno/models/xai/xai.py +113 -0
  227. agno-2.2.12/agno/os/__init__.py +3 -0
  228. agno-2.2.12/agno/os/app.py +876 -0
  229. agno-2.2.12/agno/os/auth.py +57 -0
  230. agno-2.2.12/agno/os/config.py +104 -0
  231. agno-2.2.12/agno/os/interfaces/__init__.py +1 -0
  232. agno-2.2.12/agno/os/interfaces/a2a/__init__.py +3 -0
  233. agno-2.2.12/agno/os/interfaces/a2a/a2a.py +42 -0
  234. agno-2.2.12/agno/os/interfaces/a2a/router.py +250 -0
  235. agno-2.2.12/agno/os/interfaces/a2a/utils.py +924 -0
  236. agno-2.2.12/agno/os/interfaces/agui/__init__.py +3 -0
  237. agno-2.2.12/agno/os/interfaces/agui/agui.py +47 -0
  238. agno-2.2.12/agno/os/interfaces/agui/router.py +144 -0
  239. agno-2.2.12/agno/os/interfaces/agui/utils.py +534 -0
  240. agno-2.2.12/agno/os/interfaces/base.py +25 -0
  241. agno-2.2.12/agno/os/interfaces/slack/__init__.py +3 -0
  242. agno-2.2.12/agno/os/interfaces/slack/router.py +148 -0
  243. agno-2.2.12/agno/os/interfaces/slack/security.py +30 -0
  244. agno-2.2.12/agno/os/interfaces/slack/slack.py +47 -0
  245. agno-2.2.12/agno/os/interfaces/whatsapp/__init__.py +3 -0
  246. agno-2.2.12/agno/os/interfaces/whatsapp/router.py +211 -0
  247. agno-2.2.12/agno/os/interfaces/whatsapp/security.py +53 -0
  248. agno-2.2.12/agno/os/interfaces/whatsapp/whatsapp.py +36 -0
  249. agno-2.2.12/agno/os/mcp.py +292 -0
  250. agno-2.2.12/agno/os/middleware/__init__.py +7 -0
  251. agno-2.2.12/agno/os/middleware/jwt.py +233 -0
  252. agno-2.2.12/agno/os/router.py +1763 -0
  253. agno-2.2.12/agno/os/routers/__init__.py +3 -0
  254. agno-2.2.12/agno/os/routers/evals/__init__.py +3 -0
  255. agno-2.2.12/agno/os/routers/evals/evals.py +430 -0
  256. agno-2.2.12/agno/os/routers/evals/schemas.py +142 -0
  257. agno-2.2.12/agno/os/routers/evals/utils.py +162 -0
  258. agno-2.2.12/agno/os/routers/health.py +31 -0
  259. agno-2.2.12/agno/os/routers/home.py +52 -0
  260. agno-2.2.12/agno/os/routers/knowledge/__init__.py +3 -0
  261. agno-2.2.12/agno/os/routers/knowledge/knowledge.py +997 -0
  262. agno-2.2.12/agno/os/routers/knowledge/schemas.py +178 -0
  263. agno-2.2.12/agno/os/routers/memory/__init__.py +3 -0
  264. agno-2.2.12/agno/os/routers/memory/memory.py +515 -0
  265. agno-2.2.12/agno/os/routers/memory/schemas.py +62 -0
  266. agno-2.2.12/agno/os/routers/metrics/__init__.py +3 -0
  267. agno-2.2.12/agno/os/routers/metrics/metrics.py +190 -0
  268. agno-2.2.12/agno/os/routers/metrics/schemas.py +47 -0
  269. agno-2.2.12/agno/os/routers/session/__init__.py +3 -0
  270. agno-2.2.12/agno/os/routers/session/session.py +997 -0
  271. agno-2.2.12/agno/os/schema.py +1055 -0
  272. agno-2.2.12/agno/os/settings.py +43 -0
  273. agno-2.2.12/agno/os/utils.py +630 -0
  274. agno-2.2.12/agno/reasoning/anthropic.py +80 -0
  275. agno-2.2.12/agno/reasoning/azure_ai_foundry.py +67 -0
  276. agno-2.2.12/agno/reasoning/deepseek.py +63 -0
  277. agno-2.2.12/agno/reasoning/default.py +97 -0
  278. agno-2.2.12/agno/reasoning/gemini.py +73 -0
  279. agno-2.2.12/agno/reasoning/groq.py +71 -0
  280. agno-2.2.12/agno/reasoning/helpers.py +63 -0
  281. agno-2.2.12/agno/reasoning/ollama.py +67 -0
  282. agno-2.2.12/agno/reasoning/openai.py +86 -0
  283. agno-2.2.12/agno/reasoning/vertexai.py +76 -0
  284. agno-2.2.12/agno/run/__init__.py +6 -0
  285. agno-2.2.12/agno/run/agent.py +787 -0
  286. agno-2.2.12/agno/run/base.py +229 -0
  287. agno-2.2.12/agno/run/cancel.py +81 -0
  288. agno-2.2.12/agno/run/team.py +753 -0
  289. agno-2.2.12/agno/run/workflow.py +708 -0
  290. agno-2.2.12/agno/session/__init__.py +10 -0
  291. agno-2.2.12/agno/session/agent.py +295 -0
  292. agno-2.2.12/agno/session/summary.py +265 -0
  293. agno-2.2.12/agno/session/team.py +392 -0
  294. agno-2.2.12/agno/session/workflow.py +205 -0
  295. agno-2.2.12/agno/team/__init__.py +37 -0
  296. agno-2.2.12/agno/team/team.py +8793 -0
  297. agno-2.2.12/agno/tools/agentql.py +120 -0
  298. agno-2.2.12/agno/tools/airflow.py +69 -0
  299. agno-2.2.12/agno/tools/api.py +122 -0
  300. agno-2.2.12/agno/tools/apify.py +314 -0
  301. agno-2.2.12/agno/tools/arxiv.py +127 -0
  302. agno-2.2.12/agno/tools/aws_lambda.py +53 -0
  303. agno-2.2.12/agno/tools/aws_ses.py +66 -0
  304. agno-2.2.12/agno/tools/baidusearch.py +89 -0
  305. agno-2.2.12/agno/tools/bitbucket.py +292 -0
  306. agno-2.2.12/agno/tools/brandfetch.py +213 -0
  307. agno-2.2.12/agno/tools/bravesearch.py +106 -0
  308. agno-2.2.12/agno/tools/brightdata.py +367 -0
  309. agno-2.2.12/agno/tools/browserbase.py +209 -0
  310. agno-2.2.12/agno/tools/calcom.py +255 -0
  311. agno-2.2.12/agno/tools/calculator.py +151 -0
  312. agno-2.2.12/agno/tools/cartesia.py +187 -0
  313. agno-2.2.12/agno/tools/clickup.py +244 -0
  314. agno-2.2.12/agno/tools/confluence.py +240 -0
  315. agno-2.2.12/agno/tools/crawl4ai.py +158 -0
  316. agno-2.2.12/agno/tools/csv_toolkit.py +185 -0
  317. agno-2.2.12/agno/tools/dalle.py +110 -0
  318. agno-2.2.12/agno/tools/daytona.py +475 -0
  319. agno-2.2.12/agno/tools/decorator.py +262 -0
  320. agno-2.2.12/agno/tools/desi_vocal.py +108 -0
  321. agno-2.2.12/agno/tools/discord.py +161 -0
  322. agno-2.2.12/agno/tools/docker.py +716 -0
  323. agno-2.2.12/agno/tools/duckdb.py +379 -0
  324. agno-2.2.12/agno/tools/duckduckgo.py +91 -0
  325. agno-2.2.12/agno/tools/e2b.py +703 -0
  326. agno-2.2.12/agno/tools/eleven_labs.py +196 -0
  327. agno-2.2.12/agno/tools/email.py +67 -0
  328. agno-2.2.12/agno/tools/evm.py +129 -0
  329. agno-2.2.12/agno/tools/exa.py +396 -0
  330. agno-2.2.12/agno/tools/fal.py +127 -0
  331. agno-2.2.12/agno/tools/file.py +240 -0
  332. agno-2.2.12/agno/tools/file_generation.py +350 -0
  333. agno-2.2.12/agno/tools/financial_datasets.py +288 -0
  334. agno-2.2.12/agno/tools/firecrawl.py +143 -0
  335. agno-2.2.12/agno/tools/function.py +1187 -0
  336. agno-2.2.12/agno/tools/giphy.py +93 -0
  337. agno-2.2.12/agno/tools/github.py +1760 -0
  338. agno-2.2.12/agno/tools/gmail.py +922 -0
  339. agno-2.2.12/agno/tools/google_bigquery.py +117 -0
  340. agno-2.2.12/agno/tools/google_drive.py +270 -0
  341. agno-2.2.12/agno/tools/google_maps.py +253 -0
  342. agno-2.2.12/agno/tools/googlecalendar.py +674 -0
  343. agno-2.2.12/agno/tools/googlesearch.py +98 -0
  344. agno-2.2.12/agno/tools/googlesheets.py +377 -0
  345. agno-2.2.12/agno/tools/hackernews.py +77 -0
  346. agno-2.2.12/agno/tools/jina.py +101 -0
  347. agno-2.2.12/agno/tools/jira.py +170 -0
  348. agno-2.2.12/agno/tools/knowledge.py +218 -0
  349. agno-2.2.12/agno/tools/linear.py +426 -0
  350. agno-2.2.12/agno/tools/linkup.py +58 -0
  351. agno-2.2.12/agno/tools/local_file_system.py +90 -0
  352. agno-2.2.12/agno/tools/lumalab.py +183 -0
  353. agno-2.2.12/agno/tools/mcp/__init__.py +10 -0
  354. agno-2.2.12/agno/tools/mcp/mcp.py +331 -0
  355. agno-2.2.12/agno/tools/mcp/multi_mcp.py +347 -0
  356. agno-2.2.12/agno/tools/mcp/params.py +24 -0
  357. agno-2.2.12/agno/tools/mcp_toolbox.py +284 -0
  358. agno-2.2.12/agno/tools/mem0.py +193 -0
  359. agno-2.2.12/agno/tools/memori.py +339 -0
  360. agno-2.2.12/agno/tools/memory.py +419 -0
  361. agno-2.2.12/agno/tools/mlx_transcribe.py +139 -0
  362. agno-2.2.12/agno/tools/models/azure_openai.py +190 -0
  363. agno-2.2.12/agno/tools/models/gemini.py +203 -0
  364. agno-2.2.12/agno/tools/models/groq.py +158 -0
  365. agno-2.2.12/agno/tools/models/morph.py +186 -0
  366. agno-2.2.12/agno/tools/models/nebius.py +124 -0
  367. agno-2.2.12/agno/tools/models_labs.py +195 -0
  368. agno-2.2.12/agno/tools/moviepy_video.py +349 -0
  369. agno-2.2.12/agno/tools/neo4j.py +134 -0
  370. agno-2.2.12/agno/tools/newspaper.py +46 -0
  371. agno-2.2.12/agno/tools/newspaper4k.py +93 -0
  372. agno-2.2.12/agno/tools/notion.py +204 -0
  373. agno-2.2.12/agno/tools/openai.py +202 -0
  374. agno-2.2.12/agno/tools/openbb.py +160 -0
  375. agno-2.2.12/agno/tools/opencv.py +321 -0
  376. agno-2.2.12/agno/tools/openweather.py +233 -0
  377. agno-2.2.12/agno/tools/oxylabs.py +385 -0
  378. agno-2.2.12/agno/tools/pandas.py +102 -0
  379. agno-2.2.12/agno/tools/parallel.py +314 -0
  380. agno-2.2.12/agno/tools/postgres.py +257 -0
  381. agno-2.2.12/agno/tools/pubmed.py +188 -0
  382. agno-2.2.12/agno/tools/python.py +205 -0
  383. agno-2.2.12/agno/tools/reasoning.py +283 -0
  384. agno-2.2.12/agno/tools/reddit.py +467 -0
  385. agno-2.2.12/agno/tools/replicate.py +117 -0
  386. agno-2.2.12/agno/tools/resend.py +62 -0
  387. agno-2.2.12/agno/tools/scrapegraph.py +222 -0
  388. agno-2.2.12/agno/tools/searxng.py +152 -0
  389. agno-2.2.12/agno/tools/serpapi.py +116 -0
  390. agno-2.2.12/agno/tools/serper.py +255 -0
  391. agno-2.2.12/agno/tools/shell.py +53 -0
  392. agno-2.2.12/agno/tools/slack.py +136 -0
  393. agno-2.2.12/agno/tools/sleep.py +20 -0
  394. agno-2.2.12/agno/tools/spider.py +116 -0
  395. agno-2.2.12/agno/tools/sql.py +154 -0
  396. agno-2.2.12/agno/tools/tavily.py +254 -0
  397. agno-2.2.12/agno/tools/telegram.py +48 -0
  398. agno-2.2.12/agno/tools/todoist.py +218 -0
  399. agno-2.2.12/agno/tools/toolkit.py +146 -0
  400. agno-2.2.12/agno/tools/trafilatura.py +388 -0
  401. agno-2.2.12/agno/tools/trello.py +274 -0
  402. agno-2.2.12/agno/tools/twilio.py +186 -0
  403. agno-2.2.12/agno/tools/user_control_flow.py +78 -0
  404. agno-2.2.12/agno/tools/valyu.py +228 -0
  405. agno-2.2.12/agno/tools/visualization.py +467 -0
  406. agno-2.2.12/agno/tools/webbrowser.py +28 -0
  407. agno-2.2.12/agno/tools/webex.py +76 -0
  408. agno-2.2.12/agno/tools/website.py +54 -0
  409. agno-2.2.12/agno/tools/webtools.py +45 -0
  410. agno-2.2.12/agno/tools/whatsapp.py +286 -0
  411. agno-2.2.12/agno/tools/wikipedia.py +63 -0
  412. agno-2.2.12/agno/tools/workflow.py +278 -0
  413. agno-2.2.12/agno/tools/x.py +335 -0
  414. agno-2.2.12/agno/tools/yfinance.py +257 -0
  415. agno-2.2.12/agno/tools/youtube.py +184 -0
  416. agno-2.2.12/agno/tools/zendesk.py +82 -0
  417. agno-2.2.12/agno/tools/zep.py +454 -0
  418. agno-2.2.12/agno/tools/zoom.py +382 -0
  419. agno-2.2.12/agno/utils/agent.py +820 -0
  420. agno-2.2.12/agno/utils/audio.py +49 -0
  421. agno-2.2.12/agno/utils/code_execution.py +11 -0
  422. agno-2.2.12/agno/utils/common.py +132 -0
  423. agno-2.2.12/agno/utils/events.py +696 -0
  424. agno-2.2.12/agno/utils/functions.py +166 -0
  425. agno-2.2.12/agno/utils/gemini.py +426 -0
  426. agno-2.2.12/agno/utils/hooks.py +57 -0
  427. agno-2.2.12/agno/utils/json_schema.py +234 -0
  428. agno-2.2.12/agno/utils/knowledge.py +36 -0
  429. agno-2.2.12/agno/utils/location.py +19 -0
  430. agno-2.2.12/agno/utils/log.py +255 -0
  431. agno-2.2.12/agno/utils/mcp.py +214 -0
  432. agno-2.2.12/agno/utils/media.py +352 -0
  433. agno-2.2.12/agno/utils/merge_dict.py +41 -0
  434. agno-2.2.12/agno/utils/message.py +118 -0
  435. agno-2.2.12/agno/utils/models/claude.py +358 -0
  436. agno-2.2.12/agno/utils/models/cohere.py +87 -0
  437. agno-2.2.12/agno/utils/models/llama.py +78 -0
  438. agno-2.2.12/agno/utils/models/mistral.py +98 -0
  439. agno-2.2.12/agno/utils/models/openai_responses.py +140 -0
  440. agno-2.2.12/agno/utils/models/schema_utils.py +153 -0
  441. agno-2.2.12/agno/utils/models/watsonx.py +41 -0
  442. agno-2.2.12/agno/utils/openai.py +257 -0
  443. agno-2.2.12/agno/utils/pprint.py +178 -0
  444. agno-2.2.12/agno/utils/print_response/agent.py +842 -0
  445. agno-2.2.12/agno/utils/print_response/team.py +1724 -0
  446. agno-2.2.12/agno/utils/print_response/workflow.py +1668 -0
  447. agno-2.2.12/agno/utils/prompts.py +111 -0
  448. agno-2.2.12/agno/utils/reasoning.py +108 -0
  449. agno-2.2.12/agno/utils/response.py +163 -0
  450. agno-2.2.12/agno/utils/serialize.py +32 -0
  451. agno-2.2.12/agno/utils/streamlit.py +487 -0
  452. agno-2.2.12/agno/utils/string.py +231 -0
  453. agno-2.2.12/agno/utils/team.py +139 -0
  454. agno-2.2.12/agno/utils/timer.py +41 -0
  455. agno-2.2.12/agno/utils/tools.py +102 -0
  456. agno-2.2.12/agno/utils/whatsapp.py +305 -0
  457. agno-2.2.12/agno/vectordb/base.py +127 -0
  458. agno-2.2.12/agno/vectordb/cassandra/cassandra.py +501 -0
  459. agno-2.2.12/agno/vectordb/chroma/chromadb.py +929 -0
  460. agno-2.2.12/agno/vectordb/clickhouse/clickhousedb.py +835 -0
  461. agno-2.2.12/agno/vectordb/couchbase/__init__.py +3 -0
  462. agno-2.2.12/agno/vectordb/couchbase/couchbase.py +1442 -0
  463. agno-2.2.12/agno/vectordb/lancedb/lance_db.py +995 -0
  464. agno-2.2.12/agno/vectordb/langchaindb/__init__.py +5 -0
  465. agno-2.2.12/agno/vectordb/langchaindb/langchaindb.py +163 -0
  466. agno-2.2.12/agno/vectordb/lightrag/__init__.py +5 -0
  467. agno-2.2.12/agno/vectordb/lightrag/lightrag.py +388 -0
  468. agno-2.2.12/agno/vectordb/llamaindex/__init__.py +3 -0
  469. agno-2.2.12/agno/vectordb/llamaindex/llamaindexdb.py +166 -0
  470. agno-2.2.12/agno/vectordb/milvus/milvus.py +1182 -0
  471. agno-2.2.12/agno/vectordb/mongodb/__init__.py +9 -0
  472. agno-2.2.12/agno/vectordb/mongodb/mongodb.py +1417 -0
  473. agno-2.2.12/agno/vectordb/pgvector/pgvector.py +1462 -0
  474. agno-2.2.12/agno/vectordb/pineconedb/pineconedb.py +747 -0
  475. agno-2.2.12/agno/vectordb/qdrant/qdrant.py +1134 -0
  476. agno-2.2.12/agno/vectordb/redis/__init__.py +9 -0
  477. agno-2.2.12/agno/vectordb/redis/redisdb.py +694 -0
  478. agno-2.2.12/agno/vectordb/singlestore/singlestore.py +763 -0
  479. agno-2.2.12/agno/vectordb/surrealdb/__init__.py +3 -0
  480. agno-2.2.12/agno/vectordb/surrealdb/surrealdb.py +699 -0
  481. agno-2.2.12/agno/vectordb/upstashdb/upstashdb.py +718 -0
  482. agno-2.2.12/agno/vectordb/weaviate/weaviate.py +1005 -0
  483. agno-2.2.12/agno/workflow/__init__.py +23 -0
  484. agno-2.2.12/agno/workflow/agent.py +299 -0
  485. agno-2.2.12/agno/workflow/condition.py +738 -0
  486. agno-2.2.12/agno/workflow/loop.py +735 -0
  487. agno-2.2.12/agno/workflow/parallel.py +824 -0
  488. agno-2.2.12/agno/workflow/router.py +702 -0
  489. agno-2.2.12/agno/workflow/step.py +1368 -0
  490. agno-2.2.12/agno/workflow/steps.py +592 -0
  491. agno-2.2.12/agno/workflow/types.py +520 -0
  492. agno-2.2.12/agno/workflow/workflow.py +4321 -0
  493. agno-2.2.12/agno.egg-info/PKG-INFO +614 -0
  494. agno-2.2.12/agno.egg-info/SOURCES.txt +578 -0
  495. agno-2.2.12/agno.egg-info/requires.txt +467 -0
  496. agno-2.2.12/pyproject.toml +498 -0
  497. agno-1.5.1/LICENSE +0 -375
  498. agno-1.5.1/PKG-INFO +0 -1056
  499. agno-1.5.1/README.md +0 -414
  500. agno-1.5.1/agno/agent/__init__.py +0 -26
  501. agno-1.5.1/agno/agent/agent.py +0 -5909
  502. agno-1.5.1/agno/agent/metrics.py +0 -105
  503. agno-1.5.1/agno/api/agent.py +0 -52
  504. agno-1.5.1/agno/api/api.py +0 -81
  505. agno-1.5.1/agno/api/playground.py +0 -91
  506. agno-1.5.1/agno/api/routes.py +0 -39
  507. agno-1.5.1/agno/api/schemas/agent.py +0 -20
  508. agno-1.5.1/agno/api/schemas/playground.py +0 -22
  509. agno-1.5.1/agno/api/schemas/team.py +0 -20
  510. agno-1.5.1/agno/api/schemas/user.py +0 -35
  511. agno-1.5.1/agno/api/schemas/workspace.py +0 -46
  512. agno-1.5.1/agno/api/team.py +0 -55
  513. agno-1.5.1/agno/api/user.py +0 -160
  514. agno-1.5.1/agno/api/workspace.py +0 -175
  515. agno-1.5.1/agno/cli/auth_server.py +0 -249
  516. agno-1.5.1/agno/cli/config.py +0 -274
  517. agno-1.5.1/agno/cli/console.py +0 -88
  518. agno-1.5.1/agno/cli/credentials.py +0 -23
  519. agno-1.5.1/agno/cli/entrypoint.py +0 -571
  520. agno-1.5.1/agno/cli/operator.py +0 -357
  521. agno-1.5.1/agno/cli/settings.py +0 -96
  522. agno-1.5.1/agno/cli/ws/ws_cli.py +0 -817
  523. agno-1.5.1/agno/constants.py +0 -13
  524. agno-1.5.1/agno/document/__init__.py +0 -5
  525. agno-1.5.1/agno/document/base.py +0 -48
  526. agno-1.5.1/agno/document/chunking/agentic.py +0 -76
  527. agno-1.5.1/agno/document/chunking/document.py +0 -91
  528. agno-1.5.1/agno/document/chunking/fixed.py +0 -57
  529. agno-1.5.1/agno/document/chunking/recursive.py +0 -63
  530. agno-1.5.1/agno/document/chunking/semantic.py +0 -47
  531. agno-1.5.1/agno/document/chunking/strategy.py +0 -31
  532. agno-1.5.1/agno/document/reader/__init__.py +0 -5
  533. agno-1.5.1/agno/document/reader/arxiv_reader.py +0 -53
  534. agno-1.5.1/agno/document/reader/base.py +0 -51
  535. agno-1.5.1/agno/document/reader/csv_reader.py +0 -184
  536. agno-1.5.1/agno/document/reader/docx_reader.py +0 -60
  537. agno-1.5.1/agno/document/reader/firecrawl_reader.py +0 -160
  538. agno-1.5.1/agno/document/reader/json_reader.py +0 -66
  539. agno-1.5.1/agno/document/reader/pdf_reader.py +0 -352
  540. agno-1.5.1/agno/document/reader/s3/pdf_reader.py +0 -47
  541. agno-1.5.1/agno/document/reader/s3/text_reader.py +0 -51
  542. agno-1.5.1/agno/document/reader/text_reader.py +0 -94
  543. agno-1.5.1/agno/document/reader/url_reader.py +0 -104
  544. agno-1.5.1/agno/document/reader/website_reader.py +0 -405
  545. agno-1.5.1/agno/document/reader/youtube_reader.py +0 -54
  546. agno-1.5.1/agno/embedder/__init__.py +0 -5
  547. agno-1.5.1/agno/embedder/aws_bedrock.py +0 -212
  548. agno-1.5.1/agno/embedder/azure_openai.py +0 -92
  549. agno-1.5.1/agno/embedder/base.py +0 -15
  550. agno-1.5.1/agno/embedder/cohere.py +0 -73
  551. agno-1.5.1/agno/embedder/fastembed.py +0 -37
  552. agno-1.5.1/agno/embedder/fireworks.py +0 -13
  553. agno-1.5.1/agno/embedder/google.py +0 -95
  554. agno-1.5.1/agno/embedder/huggingface.py +0 -52
  555. agno-1.5.1/agno/embedder/mistral.py +0 -82
  556. agno-1.5.1/agno/embedder/ollama.py +0 -90
  557. agno-1.5.1/agno/embedder/openai.py +0 -74
  558. agno-1.5.1/agno/embedder/sentence_transformer.py +0 -38
  559. agno-1.5.1/agno/embedder/together.py +0 -13
  560. agno-1.5.1/agno/embedder/voyageai.py +0 -64
  561. agno-1.5.1/agno/eval/accuracy.py +0 -384
  562. agno-1.5.1/agno/eval/performance.py +0 -325
  563. agno-1.5.1/agno/eval/reliability.py +0 -112
  564. agno-1.5.1/agno/eval/utils.py +0 -30
  565. agno-1.5.1/agno/exceptions.py +0 -94
  566. agno-1.5.1/agno/file/__init__.py +0 -5
  567. agno-1.5.1/agno/file/file.py +0 -16
  568. agno-1.5.1/agno/file/local/csv.py +0 -32
  569. agno-1.5.1/agno/file/local/txt.py +0 -19
  570. agno-1.5.1/agno/infra/app.py +0 -240
  571. agno-1.5.1/agno/infra/base.py +0 -144
  572. agno-1.5.1/agno/infra/context.py +0 -20
  573. agno-1.5.1/agno/infra/db_app.py +0 -52
  574. agno-1.5.1/agno/infra/resource.py +0 -205
  575. agno-1.5.1/agno/infra/resources.py +0 -55
  576. agno-1.5.1/agno/knowledge/__init__.py +0 -5
  577. agno-1.5.1/agno/knowledge/agent.py +0 -661
  578. agno-1.5.1/agno/knowledge/arxiv.py +0 -33
  579. agno-1.5.1/agno/knowledge/combined.py +0 -22
  580. agno-1.5.1/agno/knowledge/csv.py +0 -49
  581. agno-1.5.1/agno/knowledge/csv_url.py +0 -27
  582. agno-1.5.1/agno/knowledge/document.py +0 -20
  583. agno-1.5.1/agno/knowledge/docx.py +0 -137
  584. agno-1.5.1/agno/knowledge/firecrawl.py +0 -34
  585. agno-1.5.1/agno/knowledge/json.py +0 -137
  586. agno-1.5.1/agno/knowledge/langchain.py +0 -71
  587. agno-1.5.1/agno/knowledge/llamaindex.py +0 -66
  588. agno-1.5.1/agno/knowledge/pdf.py +0 -140
  589. agno-1.5.1/agno/knowledge/pdf_url.py +0 -140
  590. agno-1.5.1/agno/knowledge/s3/base.py +0 -60
  591. agno-1.5.1/agno/knowledge/s3/pdf.py +0 -21
  592. agno-1.5.1/agno/knowledge/s3/text.py +0 -23
  593. agno-1.5.1/agno/knowledge/text.py +0 -141
  594. agno-1.5.1/agno/knowledge/url.py +0 -46
  595. agno-1.5.1/agno/knowledge/website.py +0 -176
  596. agno-1.5.1/agno/knowledge/wikipedia.py +0 -31
  597. agno-1.5.1/agno/knowledge/youtube.py +0 -35
  598. agno-1.5.1/agno/media.py +0 -363
  599. agno-1.5.1/agno/memory/__init__.py +0 -11
  600. agno-1.5.1/agno/memory/agent.py +0 -410
  601. agno-1.5.1/agno/memory/classifier.py +0 -104
  602. agno-1.5.1/agno/memory/db/__init__.py +0 -5
  603. agno-1.5.1/agno/memory/db/base.py +0 -42
  604. agno-1.5.1/agno/memory/db/mongodb.py +0 -189
  605. agno-1.5.1/agno/memory/db/postgres.py +0 -203
  606. agno-1.5.1/agno/memory/db/sqlite.py +0 -193
  607. agno-1.5.1/agno/memory/manager.py +0 -218
  608. agno-1.5.1/agno/memory/memory.py +0 -22
  609. agno-1.5.1/agno/memory/row.py +0 -36
  610. agno-1.5.1/agno/memory/summarizer.py +0 -201
  611. agno-1.5.1/agno/memory/summary.py +0 -19
  612. agno-1.5.1/agno/memory/team.py +0 -415
  613. agno-1.5.1/agno/memory/v2/__init__.py +0 -2
  614. agno-1.5.1/agno/memory/v2/db/__init__.py +0 -1
  615. agno-1.5.1/agno/memory/v2/db/base.py +0 -42
  616. agno-1.5.1/agno/memory/v2/db/mongodb.py +0 -196
  617. agno-1.5.1/agno/memory/v2/db/postgres.py +0 -214
  618. agno-1.5.1/agno/memory/v2/db/redis.py +0 -176
  619. agno-1.5.1/agno/memory/v2/db/schema.py +0 -54
  620. agno-1.5.1/agno/memory/v2/db/sqlite.py +0 -209
  621. agno-1.5.1/agno/memory/v2/manager.py +0 -437
  622. agno-1.5.1/agno/memory/v2/memory.py +0 -1067
  623. agno-1.5.1/agno/memory/v2/schema.py +0 -55
  624. agno-1.5.1/agno/memory/v2/summarizer.py +0 -215
  625. agno-1.5.1/agno/memory/workflow.py +0 -38
  626. agno-1.5.1/agno/models/anthropic/claude.py +0 -529
  627. agno-1.5.1/agno/models/aws/bedrock.py +0 -496
  628. agno-1.5.1/agno/models/aws/claude.py +0 -332
  629. agno-1.5.1/agno/models/azure/__init__.py +0 -15
  630. agno-1.5.1/agno/models/azure/ai_foundry.py +0 -413
  631. agno-1.5.1/agno/models/azure/openai_chat.py +0 -123
  632. agno-1.5.1/agno/models/base.py +0 -1281
  633. agno-1.5.1/agno/models/cerebras/cerebras.py +0 -432
  634. agno-1.5.1/agno/models/cerebras/cerebras_openai.py +0 -106
  635. agno-1.5.1/agno/models/cohere/chat.py +0 -360
  636. agno-1.5.1/agno/models/deepinfra/deepinfra.py +0 -28
  637. agno-1.5.1/agno/models/deepseek/deepseek.py +0 -61
  638. agno-1.5.1/agno/models/fireworks/fireworks.py +0 -26
  639. agno-1.5.1/agno/models/google/gemini.py +0 -859
  640. agno-1.5.1/agno/models/groq/groq.py +0 -487
  641. agno-1.5.1/agno/models/huggingface/huggingface.py +0 -422
  642. agno-1.5.1/agno/models/ibm/watsonx.py +0 -359
  643. agno-1.5.1/agno/models/internlm/internlm.py +0 -26
  644. agno-1.5.1/agno/models/litellm/chat.py +0 -349
  645. agno-1.5.1/agno/models/litellm/litellm_openai.py +0 -25
  646. agno-1.5.1/agno/models/message.py +0 -391
  647. agno-1.5.1/agno/models/meta/llama.py +0 -423
  648. agno-1.5.1/agno/models/meta/llama_openai.py +0 -74
  649. agno-1.5.1/agno/models/mistral/mistral.py +0 -359
  650. agno-1.5.1/agno/models/nebius/nebius.py +0 -54
  651. agno-1.5.1/agno/models/nvidia/nvidia.py +0 -28
  652. agno-1.5.1/agno/models/ollama/__init__.py +0 -7
  653. agno-1.5.1/agno/models/ollama/chat.py +0 -364
  654. agno-1.5.1/agno/models/ollama/tools.py +0 -431
  655. agno-1.5.1/agno/models/openai/chat.py +0 -735
  656. agno-1.5.1/agno/models/openai/like.py +0 -27
  657. agno-1.5.1/agno/models/openai/responses.py +0 -842
  658. agno-1.5.1/agno/models/openrouter/openrouter.py +0 -28
  659. agno-1.5.1/agno/models/perplexity/perplexity.py +0 -160
  660. agno-1.5.1/agno/models/response.py +0 -49
  661. agno-1.5.1/agno/models/sambanova/sambanova.py +0 -28
  662. agno-1.5.1/agno/models/together/together.py +0 -25
  663. agno-1.5.1/agno/models/xai/xai.py +0 -26
  664. agno-1.5.1/agno/playground/__init__.py +0 -10
  665. agno-1.5.1/agno/playground/async_router.py +0 -850
  666. agno-1.5.1/agno/playground/deploy.py +0 -249
  667. agno-1.5.1/agno/playground/operator.py +0 -160
  668. agno-1.5.1/agno/playground/playground.py +0 -140
  669. agno-1.5.1/agno/playground/schemas.py +0 -220
  670. agno-1.5.1/agno/playground/serve.py +0 -55
  671. agno-1.5.1/agno/playground/settings.py +0 -51
  672. agno-1.5.1/agno/playground/sync_router.py +0 -841
  673. agno-1.5.1/agno/playground/utils.py +0 -46
  674. agno-1.5.1/agno/reasoning/azure_ai_foundry.py +0 -67
  675. agno-1.5.1/agno/reasoning/deepseek.py +0 -63
  676. agno-1.5.1/agno/reasoning/default.py +0 -92
  677. agno-1.5.1/agno/reasoning/groq.py +0 -71
  678. agno-1.5.1/agno/reasoning/helpers.py +0 -47
  679. agno-1.5.1/agno/reasoning/ollama.py +0 -67
  680. agno-1.5.1/agno/reasoning/openai.py +0 -81
  681. agno-1.5.1/agno/reranker/base.py +0 -14
  682. agno-1.5.1/agno/reranker/cohere.py +0 -64
  683. agno-1.5.1/agno/run/__init__.py +0 -0
  684. agno-1.5.1/agno/run/response.py +0 -188
  685. agno-1.5.1/agno/run/team.py +0 -159
  686. agno-1.5.1/agno/storage/__init__.py +0 -0
  687. agno-1.5.1/agno/storage/agent/__init__.py +0 -0
  688. agno-1.5.1/agno/storage/agent/dynamodb.py +0 -1
  689. agno-1.5.1/agno/storage/agent/json.py +0 -1
  690. agno-1.5.1/agno/storage/agent/mongodb.py +0 -1
  691. agno-1.5.1/agno/storage/agent/postgres.py +0 -1
  692. agno-1.5.1/agno/storage/agent/singlestore.py +0 -1
  693. agno-1.5.1/agno/storage/agent/sqlite.py +0 -1
  694. agno-1.5.1/agno/storage/agent/yaml.py +0 -1
  695. agno-1.5.1/agno/storage/base.py +0 -51
  696. agno-1.5.1/agno/storage/dynamodb.py +0 -507
  697. agno-1.5.1/agno/storage/gcs_json.py +0 -190
  698. agno-1.5.1/agno/storage/json.py +0 -156
  699. agno-1.5.1/agno/storage/mongodb.py +0 -262
  700. agno-1.5.1/agno/storage/postgres.py +0 -574
  701. agno-1.5.1/agno/storage/redis.py +0 -233
  702. agno-1.5.1/agno/storage/session/__init__.py +0 -14
  703. agno-1.5.1/agno/storage/session/agent.py +0 -61
  704. agno-1.5.1/agno/storage/session/team.py +0 -60
  705. agno-1.5.1/agno/storage/session/workflow.py +0 -61
  706. agno-1.5.1/agno/storage/singlestore.py +0 -477
  707. agno-1.5.1/agno/storage/sqlite.py +0 -547
  708. agno-1.5.1/agno/storage/workflow/__init__.py +0 -0
  709. agno-1.5.1/agno/storage/workflow/mongodb.py +0 -1
  710. agno-1.5.1/agno/storage/workflow/postgres.py +0 -1
  711. agno-1.5.1/agno/storage/workflow/sqlite.py +0 -1
  712. agno-1.5.1/agno/storage/yaml.py +0 -156
  713. agno-1.5.1/agno/team/__init__.py +0 -3
  714. agno-1.5.1/agno/team/team.py +0 -6731
  715. agno-1.5.1/agno/tools/agentql.py +0 -111
  716. agno-1.5.1/agno/tools/airflow.py +0 -61
  717. agno-1.5.1/agno/tools/api.py +0 -117
  718. agno-1.5.1/agno/tools/apify.py +0 -355
  719. agno-1.5.1/agno/tools/arxiv.py +0 -121
  720. agno-1.5.1/agno/tools/aws_lambda.py +0 -32
  721. agno-1.5.1/agno/tools/baidusearch.py +0 -83
  722. agno-1.5.1/agno/tools/browserbase.py +0 -199
  723. agno-1.5.1/agno/tools/calcom.py +0 -252
  724. agno-1.5.1/agno/tools/calculator.py +0 -168
  725. agno-1.5.1/agno/tools/cartesia.py +0 -182
  726. agno-1.5.1/agno/tools/clickup_tool.py +0 -256
  727. agno-1.5.1/agno/tools/confluence.py +0 -184
  728. agno-1.5.1/agno/tools/crawl4ai.py +0 -63
  729. agno-1.5.1/agno/tools/csv_toolkit.py +0 -180
  730. agno-1.5.1/agno/tools/dalle.py +0 -100
  731. agno-1.5.1/agno/tools/decorator.py +0 -181
  732. agno-1.5.1/agno/tools/desi_vocal.py +0 -98
  733. agno-1.5.1/agno/tools/discord.py +0 -159
  734. agno-1.5.1/agno/tools/docker.py +0 -723
  735. agno-1.5.1/agno/tools/duckdb.py +0 -385
  736. agno-1.5.1/agno/tools/duckduckgo.py +0 -94
  737. agno-1.5.1/agno/tools/e2b.py +0 -715
  738. agno-1.5.1/agno/tools/eleven_labs.py +0 -188
  739. agno-1.5.1/agno/tools/email.py +0 -61
  740. agno-1.5.1/agno/tools/exa.py +0 -285
  741. agno-1.5.1/agno/tools/fal.py +0 -125
  742. agno-1.5.1/agno/tools/file.py +0 -75
  743. agno-1.5.1/agno/tools/financial_datasets.py +0 -310
  744. agno-1.5.1/agno/tools/firecrawl.py +0 -106
  745. agno-1.5.1/agno/tools/function.py +0 -742
  746. agno-1.5.1/agno/tools/giphy.py +0 -73
  747. agno-1.5.1/agno/tools/github.py +0 -1791
  748. agno-1.5.1/agno/tools/gmail.py +0 -594
  749. agno-1.5.1/agno/tools/google_maps.py +0 -267
  750. agno-1.5.1/agno/tools/googlecalendar.py +0 -178
  751. agno-1.5.1/agno/tools/googlesearch.py +0 -92
  752. agno-1.5.1/agno/tools/googlesheets.py +0 -350
  753. agno-1.5.1/agno/tools/hackernews.py +0 -72
  754. agno-1.5.1/agno/tools/jina.py +0 -92
  755. agno-1.5.1/agno/tools/jira.py +0 -142
  756. agno-1.5.1/agno/tools/knowledge.py +0 -215
  757. agno-1.5.1/agno/tools/linear.py +0 -388
  758. agno-1.5.1/agno/tools/local_file_system.py +0 -85
  759. agno-1.5.1/agno/tools/lumalab.py +0 -169
  760. agno-1.5.1/agno/tools/mcp.py +0 -444
  761. agno-1.5.1/agno/tools/mlx_transcribe.py +0 -138
  762. agno-1.5.1/agno/tools/models/__init__.py +0 -0
  763. agno-1.5.1/agno/tools/models/azure_openai.py +0 -172
  764. agno-1.5.1/agno/tools/models/gemini.py +0 -176
  765. agno-1.5.1/agno/tools/models/groq.py +0 -151
  766. agno-1.5.1/agno/tools/models/nebius.py +0 -108
  767. agno-1.5.1/agno/tools/models_labs.py +0 -170
  768. agno-1.5.1/agno/tools/moviepy_video.py +0 -347
  769. agno-1.5.1/agno/tools/newspaper.py +0 -40
  770. agno-1.5.1/agno/tools/newspaper4k.py +0 -86
  771. agno-1.5.1/agno/tools/openai.py +0 -174
  772. agno-1.5.1/agno/tools/openbb.py +0 -158
  773. agno-1.5.1/agno/tools/openweather.py +0 -231
  774. agno-1.5.1/agno/tools/pandas.py +0 -92
  775. agno-1.5.1/agno/tools/postgres.py +0 -245
  776. agno-1.5.1/agno/tools/pubmed.py +0 -183
  777. agno-1.5.1/agno/tools/python.py +0 -217
  778. agno-1.5.1/agno/tools/reasoning.py +0 -271
  779. agno-1.5.1/agno/tools/reddit.py +0 -481
  780. agno-1.5.1/agno/tools/replicate.py +0 -76
  781. agno-1.5.1/agno/tools/resend.py +0 -58
  782. agno-1.5.1/agno/tools/scrapegraph.py +0 -63
  783. agno-1.5.1/agno/tools/searxng.py +0 -161
  784. agno-1.5.1/agno/tools/serpapi.py +0 -112
  785. agno-1.5.1/agno/tools/shell.py +0 -42
  786. agno-1.5.1/agno/tools/slack.py +0 -95
  787. agno-1.5.1/agno/tools/sleep.py +0 -18
  788. agno-1.5.1/agno/tools/spider.py +0 -93
  789. agno-1.5.1/agno/tools/sql.py +0 -153
  790. agno-1.5.1/agno/tools/streamlit/__init__.py +0 -0
  791. agno-1.5.1/agno/tools/tavily.py +0 -105
  792. agno-1.5.1/agno/tools/telegram.py +0 -39
  793. agno-1.5.1/agno/tools/thinking.py +0 -70
  794. agno-1.5.1/agno/tools/todoist.py +0 -235
  795. agno-1.5.1/agno/tools/toolkit.py +0 -116
  796. agno-1.5.1/agno/tools/trello.py +0 -286
  797. agno-1.5.1/agno/tools/twilio.py +0 -178
  798. agno-1.5.1/agno/tools/webbrowser.py +0 -24
  799. agno-1.5.1/agno/tools/webex.py +0 -69
  800. agno-1.5.1/agno/tools/website.py +0 -83
  801. agno-1.5.1/agno/tools/wikipedia.py +0 -54
  802. agno-1.5.1/agno/tools/x.py +0 -239
  803. agno-1.5.1/agno/tools/yfinance.py +0 -283
  804. agno-1.5.1/agno/tools/youtube.py +0 -175
  805. agno-1.5.1/agno/tools/zendesk.py +0 -75
  806. agno-1.5.1/agno/tools/zep.py +0 -473
  807. agno-1.5.1/agno/tools/zoom.py +0 -380
  808. agno-1.5.1/agno/utils/__init__.py +0 -0
  809. agno-1.5.1/agno/utils/audio.py +0 -13
  810. agno-1.5.1/agno/utils/common.py +0 -61
  811. agno-1.5.1/agno/utils/defaults.py +0 -57
  812. agno-1.5.1/agno/utils/filesystem.py +0 -39
  813. agno-1.5.1/agno/utils/functions.py +0 -168
  814. agno-1.5.1/agno/utils/gemini.py +0 -173
  815. agno-1.5.1/agno/utils/git.py +0 -52
  816. agno-1.5.1/agno/utils/json_io.py +0 -30
  817. agno-1.5.1/agno/utils/json_schema.py +0 -119
  818. agno-1.5.1/agno/utils/load_env.py +0 -19
  819. agno-1.5.1/agno/utils/log.py +0 -162
  820. agno-1.5.1/agno/utils/mcp.py +0 -66
  821. agno-1.5.1/agno/utils/media.py +0 -141
  822. agno-1.5.1/agno/utils/merge_dict.py +0 -20
  823. agno-1.5.1/agno/utils/message.py +0 -43
  824. agno-1.5.1/agno/utils/models/__init__.py +0 -0
  825. agno-1.5.1/agno/utils/models/aws_claude.py +0 -170
  826. agno-1.5.1/agno/utils/models/claude.py +0 -251
  827. agno-1.5.1/agno/utils/models/cohere.py +0 -87
  828. agno-1.5.1/agno/utils/models/llama.py +0 -67
  829. agno-1.5.1/agno/utils/models/mistral.py +0 -97
  830. agno-1.5.1/agno/utils/models/openai_responses.py +0 -124
  831. agno-1.5.1/agno/utils/models/watsonx.py +0 -41
  832. agno-1.5.1/agno/utils/openai.py +0 -242
  833. agno-1.5.1/agno/utils/pprint.py +0 -126
  834. agno-1.5.1/agno/utils/prompts.py +0 -95
  835. agno-1.5.1/agno/utils/py_io.py +0 -19
  836. agno-1.5.1/agno/utils/pyproject.py +0 -18
  837. agno-1.5.1/agno/utils/resource_filter.py +0 -31
  838. agno-1.5.1/agno/utils/response.py +0 -73
  839. agno-1.5.1/agno/utils/string.py +0 -115
  840. agno-1.5.1/agno/utils/timer.py +0 -34
  841. agno-1.5.1/agno/utils/tools.py +0 -84
  842. agno-1.5.1/agno/vectordb/base.py +0 -96
  843. agno-1.5.1/agno/vectordb/cassandra/cassandra.py +0 -181
  844. agno-1.5.1/agno/vectordb/chroma/chromadb.py +0 -362
  845. agno-1.5.1/agno/vectordb/clickhouse/clickhousedb.py +0 -575
  846. agno-1.5.1/agno/vectordb/lancedb/lance_db.py +0 -600
  847. agno-1.5.1/agno/vectordb/milvus/milvus.py +0 -767
  848. agno-1.5.1/agno/vectordb/mongodb/__init__.py +0 -5
  849. agno-1.5.1/agno/vectordb/mongodb/mongodb.py +0 -763
  850. agno-1.5.1/agno/vectordb/pgvector/pgvector.py +0 -1069
  851. agno-1.5.1/agno/vectordb/pineconedb/pineconedb.py +0 -481
  852. agno-1.5.1/agno/vectordb/qdrant/qdrant.py +0 -511
  853. agno-1.5.1/agno/vectordb/singlestore/singlestore.py +0 -420
  854. agno-1.5.1/agno/vectordb/upstashdb/upstashdb.py +0 -334
  855. agno-1.5.1/agno/vectordb/weaviate/weaviate.py +0 -798
  856. agno-1.5.1/agno/workflow/__init__.py +0 -8
  857. agno-1.5.1/agno/workflow/workflow.py +0 -642
  858. agno-1.5.1/agno/workspace/__init__.py +0 -0
  859. agno-1.5.1/agno/workspace/config.py +0 -325
  860. agno-1.5.1/agno/workspace/enums.py +0 -6
  861. agno-1.5.1/agno/workspace/helpers.py +0 -48
  862. agno-1.5.1/agno/workspace/operator.py +0 -757
  863. agno-1.5.1/agno/workspace/settings.py +0 -141
  864. agno-1.5.1/agno.egg-info/PKG-INFO +0 -1056
  865. agno-1.5.1/agno.egg-info/SOURCES.txt +0 -454
  866. agno-1.5.1/agno.egg-info/entry_points.txt +0 -3
  867. agno-1.5.1/agno.egg-info/requires.txt +0 -312
  868. agno-1.5.1/pyproject.toml +0 -383
  869. {agno-1.5.1/agno → agno-2.2.12/agno/api}/__init__.py +0 -0
  870. {agno-1.5.1 → agno-2.2.12}/agno/api/schemas/response.py +0 -0
  871. {agno-1.5.1/agno/api → agno-2.2.12/agno/db/migrations}/__init__.py +0 -0
  872. /agno-1.5.1/agno/api/schemas/__init__.py → /agno-2.2.12/agno/db/schemas/metrics.py +0 -0
  873. {agno-1.5.1 → agno-2.2.12}/agno/debug.py +0 -0
  874. {agno-1.5.1/agno/cli → agno-2.2.12/agno/integrations}/__init__.py +0 -0
  875. {agno-1.5.1/agno/cli/ws → agno-2.2.12/agno/knowledge/chunking}/__init__.py +0 -0
  876. {agno-1.5.1/agno/document/chunking → agno-2.2.12/agno/knowledge/remote_content}/__init__.py +0 -0
  877. {agno-1.5.1/agno/document/reader/s3 → agno-2.2.12/agno/models}/__init__.py +0 -0
  878. {agno-1.5.1 → agno-2.2.12}/agno/models/anthropic/__init__.py +0 -0
  879. {agno-1.5.1 → agno-2.2.12}/agno/models/aws/__init__.py +0 -0
  880. {agno-1.5.1 → agno-2.2.12}/agno/models/cerebras/__init__.py +0 -0
  881. {agno-1.5.1 → agno-2.2.12}/agno/models/cohere/__init__.py +0 -0
  882. {agno-1.5.1 → agno-2.2.12}/agno/models/deepinfra/__init__.py +0 -0
  883. {agno-1.5.1 → agno-2.2.12}/agno/models/deepseek/__init__.py +0 -0
  884. {agno-1.5.1 → agno-2.2.12}/agno/models/defaults.py +0 -0
  885. {agno-1.5.1 → agno-2.2.12}/agno/models/fireworks/__init__.py +0 -0
  886. {agno-1.5.1 → agno-2.2.12}/agno/models/google/__init__.py +0 -0
  887. {agno-1.5.1 → agno-2.2.12}/agno/models/groq/__init__.py +0 -0
  888. {agno-1.5.1 → agno-2.2.12}/agno/models/huggingface/__init__.py +0 -0
  889. {agno-1.5.1 → agno-2.2.12}/agno/models/ibm/__init__.py +0 -0
  890. {agno-1.5.1 → agno-2.2.12}/agno/models/internlm/__init__.py +0 -0
  891. {agno-1.5.1 → agno-2.2.12}/agno/models/litellm/__init__.py +0 -0
  892. {agno-1.5.1 → agno-2.2.12}/agno/models/lmstudio/__init__.py +0 -0
  893. {agno-1.5.1 → agno-2.2.12}/agno/models/lmstudio/lmstudio.py +0 -0
  894. {agno-1.5.1 → agno-2.2.12}/agno/models/meta/__init__.py +0 -0
  895. {agno-1.5.1 → agno-2.2.12}/agno/models/mistral/__init__.py +0 -0
  896. {agno-1.5.1 → agno-2.2.12}/agno/models/nebius/__init__.py +0 -0
  897. {agno-1.5.1 → agno-2.2.12}/agno/models/nvidia/__init__.py +0 -0
  898. {agno-1.5.1 → agno-2.2.12}/agno/models/openai/__init__.py +0 -0
  899. {agno-1.5.1 → agno-2.2.12}/agno/models/openrouter/__init__.py +0 -0
  900. {agno-1.5.1 → agno-2.2.12}/agno/models/perplexity/__init__.py +0 -0
  901. {agno-1.5.1 → agno-2.2.12}/agno/models/sambanova/__init__.py +0 -0
  902. {agno-1.5.1 → agno-2.2.12}/agno/models/together/__init__.py +0 -0
  903. {agno-1.5.1/agno/eval → agno-2.2.12/agno/models/vertexai}/__init__.py +0 -0
  904. {agno-1.5.1 → agno-2.2.12}/agno/models/xai/__init__.py +0 -0
  905. {agno-1.5.1 → agno-2.2.12}/agno/py.typed +0 -0
  906. {agno-1.5.1/agno/file/local → agno-2.2.12/agno/reasoning}/__init__.py +0 -0
  907. {agno-1.5.1 → agno-2.2.12}/agno/reasoning/step.py +0 -0
  908. {agno-1.5.1 → agno-2.2.12}/agno/run/messages.py +0 -0
  909. {agno-1.5.1 → agno-2.2.12}/agno/tools/__init__.py +0 -0
  910. {agno-1.5.1/agno/infra → agno-2.2.12/agno/tools/models}/__init__.py +0 -0
  911. {agno-1.5.1/agno/knowledge/s3 → agno-2.2.12/agno/tools/streamlit}/__init__.py +0 -0
  912. {agno-1.5.1 → agno-2.2.12}/agno/tools/streamlit/components.py +0 -0
  913. {agno-1.5.1 → agno-2.2.12}/agno/tools/tool_registry.py +0 -0
  914. {agno-1.5.1/agno/models → agno-2.2.12/agno/utils}/__init__.py +0 -0
  915. {agno-1.5.1 → agno-2.2.12}/agno/utils/certs.py +0 -0
  916. {agno-1.5.1 → agno-2.2.12}/agno/utils/dttm.py +0 -0
  917. {agno-1.5.1 → agno-2.2.12}/agno/utils/enum.py +0 -0
  918. {agno-1.5.1 → agno-2.2.12}/agno/utils/env.py +0 -0
  919. {agno-1.5.1 → agno-2.2.12}/agno/utils/format_str.py +0 -0
  920. {agno-1.5.1 → agno-2.2.12}/agno/utils/http.py +0 -0
  921. {agno-1.5.1/agno/reasoning → agno-2.2.12/agno/utils/models}/__init__.py +0 -0
  922. {agno-1.5.1 → agno-2.2.12}/agno/utils/models/ai_foundry.py +0 -0
  923. {agno-1.5.1 → agno-2.2.12}/agno/utils/pickle.py +0 -0
  924. {agno-1.5.1/agno/reranker → agno-2.2.12/agno/utils/print_response}/__init__.py +0 -0
  925. {agno-1.5.1 → agno-2.2.12}/agno/utils/response_iterator.py +0 -0
  926. {agno-1.5.1 → agno-2.2.12}/agno/utils/safe_formatter.py +0 -0
  927. {agno-1.5.1 → agno-2.2.12}/agno/utils/shell.py +0 -0
  928. {agno-1.5.1 → agno-2.2.12}/agno/utils/web.py +0 -0
  929. {agno-1.5.1 → agno-2.2.12}/agno/utils/yaml_io.py +0 -0
  930. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/__init__.py +0 -0
  931. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/cassandra/__init__.py +0 -0
  932. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/cassandra/extra_param_mixin.py +0 -0
  933. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/cassandra/index.py +0 -0
  934. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/chroma/__init__.py +0 -0
  935. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/clickhouse/__init__.py +0 -0
  936. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/clickhouse/index.py +0 -0
  937. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/distance.py +0 -0
  938. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/lancedb/__init__.py +0 -0
  939. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/milvus/__init__.py +0 -0
  940. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/pgvector/__init__.py +0 -0
  941. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/pgvector/index.py +0 -0
  942. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/pineconedb/__init__.py +0 -0
  943. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/qdrant/__init__.py +0 -0
  944. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/search.py +0 -0
  945. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/singlestore/__init__.py +0 -0
  946. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/singlestore/index.py +0 -0
  947. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/upstashdb/__init__.py +0 -0
  948. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/weaviate/__init__.py +0 -0
  949. {agno-1.5.1 → agno-2.2.12}/agno/vectordb/weaviate/index.py +0 -0
  950. {agno-1.5.1 → agno-2.2.12}/agno.egg-info/dependency_links.txt +0 -0
  951. {agno-1.5.1 → agno-2.2.12}/agno.egg-info/top_level.txt +0 -0
  952. {agno-1.5.1 → agno-2.2.12}/setup.cfg +0 -0
agno-2.2.12/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.