agno 1.7.11__tar.gz → 1.7.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 (570) hide show
  1. {agno-1.7.11 → agno-1.7.12}/PKG-INFO +1 -1
  2. {agno-1.7.11 → agno-1.7.12}/agno/agent/agent.py +13 -0
  3. {agno-1.7.11 → agno-1.7.12}/agno/embedder/google.py +17 -5
  4. agno-1.7.12/agno/knowledge/gcs/pdf.py +125 -0
  5. {agno-1.7.11 → agno-1.7.12}/agno/models/google/gemini.py +56 -19
  6. {agno-1.7.11 → agno-1.7.12}/agno/models/openai/chat.py +5 -1
  7. {agno-1.7.11 → agno-1.7.12}/agno/models/openai/responses.py +26 -9
  8. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/default.py +7 -1
  9. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/helpers.py +7 -1
  10. {agno-1.7.11 → agno-1.7.12}/agno/storage/dynamodb.py +18 -22
  11. {agno-1.7.11 → agno-1.7.12}/agno/team/team.py +165 -65
  12. {agno-1.7.11 → agno-1.7.12}/agno/tools/bravesearch.py +7 -7
  13. {agno-1.7.11 → agno-1.7.12}/agno/tools/calculator.py +8 -8
  14. {agno-1.7.11 → agno-1.7.12}/agno/tools/discord.py +11 -11
  15. {agno-1.7.11 → agno-1.7.12}/agno/tools/youtube.py +12 -11
  16. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/PKG-INFO +1 -1
  17. {agno-1.7.11 → agno-1.7.12}/pyproject.toml +1 -1
  18. agno-1.7.11/agno/knowledge/gcs/pdf.py +0 -21
  19. {agno-1.7.11 → agno-1.7.12}/LICENSE +0 -0
  20. {agno-1.7.11 → agno-1.7.12}/README.md +0 -0
  21. {agno-1.7.11 → agno-1.7.12}/agno/__init__.py +0 -0
  22. {agno-1.7.11 → agno-1.7.12}/agno/agent/__init__.py +0 -0
  23. {agno-1.7.11 → agno-1.7.12}/agno/agent/metrics.py +0 -0
  24. {agno-1.7.11 → agno-1.7.12}/agno/api/__init__.py +0 -0
  25. {agno-1.7.11 → agno-1.7.12}/agno/api/agent.py +0 -0
  26. {agno-1.7.11 → agno-1.7.12}/agno/api/api.py +0 -0
  27. {agno-1.7.11 → agno-1.7.12}/agno/api/app.py +0 -0
  28. {agno-1.7.11 → agno-1.7.12}/agno/api/evals.py +0 -0
  29. {agno-1.7.11 → agno-1.7.12}/agno/api/playground.py +0 -0
  30. {agno-1.7.11 → agno-1.7.12}/agno/api/routes.py +0 -0
  31. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/__init__.py +0 -0
  32. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/agent.py +0 -0
  33. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/app.py +0 -0
  34. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/evals.py +0 -0
  35. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/playground.py +0 -0
  36. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/response.py +0 -0
  37. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/team.py +0 -0
  38. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/user.py +0 -0
  39. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/workflows.py +0 -0
  40. {agno-1.7.11 → agno-1.7.12}/agno/api/schemas/workspace.py +0 -0
  41. {agno-1.7.11 → agno-1.7.12}/agno/api/team.py +0 -0
  42. {agno-1.7.11 → agno-1.7.12}/agno/api/user.py +0 -0
  43. {agno-1.7.11 → agno-1.7.12}/agno/api/workflows.py +0 -0
  44. {agno-1.7.11 → agno-1.7.12}/agno/api/workspace.py +0 -0
  45. {agno-1.7.11 → agno-1.7.12}/agno/app/__init__.py +0 -0
  46. {agno-1.7.11 → agno-1.7.12}/agno/app/agui/__init__.py +0 -0
  47. {agno-1.7.11 → agno-1.7.12}/agno/app/agui/app.py +0 -0
  48. {agno-1.7.11 → agno-1.7.12}/agno/app/agui/async_router.py +0 -0
  49. {agno-1.7.11 → agno-1.7.12}/agno/app/agui/sync_router.py +0 -0
  50. {agno-1.7.11 → agno-1.7.12}/agno/app/agui/utils.py +0 -0
  51. {agno-1.7.11 → agno-1.7.12}/agno/app/base.py +0 -0
  52. {agno-1.7.11 → agno-1.7.12}/agno/app/discord/__init__.py +0 -0
  53. {agno-1.7.11 → agno-1.7.12}/agno/app/discord/client.py +0 -0
  54. {agno-1.7.11 → agno-1.7.12}/agno/app/fastapi/__init__.py +0 -0
  55. {agno-1.7.11 → agno-1.7.12}/agno/app/fastapi/app.py +0 -0
  56. {agno-1.7.11 → agno-1.7.12}/agno/app/fastapi/async_router.py +0 -0
  57. {agno-1.7.11 → agno-1.7.12}/agno/app/fastapi/sync_router.py +0 -0
  58. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/__init__.py +0 -0
  59. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/app.py +0 -0
  60. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/async_router.py +0 -0
  61. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/deploy.py +0 -0
  62. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/operator.py +0 -0
  63. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/schemas.py +0 -0
  64. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/serve.py +0 -0
  65. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/settings.py +0 -0
  66. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/sync_router.py +0 -0
  67. {agno-1.7.11 → agno-1.7.12}/agno/app/playground/utils.py +0 -0
  68. {agno-1.7.11 → agno-1.7.12}/agno/app/settings.py +0 -0
  69. {agno-1.7.11 → agno-1.7.12}/agno/app/slack/__init__.py +0 -0
  70. {agno-1.7.11 → agno-1.7.12}/agno/app/slack/app.py +0 -0
  71. {agno-1.7.11 → agno-1.7.12}/agno/app/slack/async_router.py +0 -0
  72. {agno-1.7.11 → agno-1.7.12}/agno/app/slack/security.py +0 -0
  73. {agno-1.7.11 → agno-1.7.12}/agno/app/slack/sync_router.py +0 -0
  74. {agno-1.7.11 → agno-1.7.12}/agno/app/utils.py +0 -0
  75. {agno-1.7.11 → agno-1.7.12}/agno/app/whatsapp/__init__.py +0 -0
  76. {agno-1.7.11 → agno-1.7.12}/agno/app/whatsapp/app.py +0 -0
  77. {agno-1.7.11 → agno-1.7.12}/agno/app/whatsapp/async_router.py +0 -0
  78. {agno-1.7.11 → agno-1.7.12}/agno/app/whatsapp/security.py +0 -0
  79. {agno-1.7.11 → agno-1.7.12}/agno/app/whatsapp/sync_router.py +0 -0
  80. {agno-1.7.11 → agno-1.7.12}/agno/cli/__init__.py +0 -0
  81. {agno-1.7.11 → agno-1.7.12}/agno/cli/auth_server.py +0 -0
  82. {agno-1.7.11 → agno-1.7.12}/agno/cli/config.py +0 -0
  83. {agno-1.7.11 → agno-1.7.12}/agno/cli/console.py +0 -0
  84. {agno-1.7.11 → agno-1.7.12}/agno/cli/credentials.py +0 -0
  85. {agno-1.7.11 → agno-1.7.12}/agno/cli/entrypoint.py +0 -0
  86. {agno-1.7.11 → agno-1.7.12}/agno/cli/operator.py +0 -0
  87. {agno-1.7.11 → agno-1.7.12}/agno/cli/settings.py +0 -0
  88. {agno-1.7.11 → agno-1.7.12}/agno/cli/ws/__init__.py +0 -0
  89. {agno-1.7.11 → agno-1.7.12}/agno/cli/ws/ws_cli.py +0 -0
  90. {agno-1.7.11 → agno-1.7.12}/agno/constants.py +0 -0
  91. {agno-1.7.11 → agno-1.7.12}/agno/debug.py +0 -0
  92. {agno-1.7.11 → agno-1.7.12}/agno/document/__init__.py +0 -0
  93. {agno-1.7.11 → agno-1.7.12}/agno/document/base.py +0 -0
  94. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/__init__.py +0 -0
  95. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/agentic.py +0 -0
  96. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/document.py +0 -0
  97. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/fixed.py +0 -0
  98. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/markdown.py +0 -0
  99. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/recursive.py +0 -0
  100. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/row.py +0 -0
  101. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/semantic.py +0 -0
  102. {agno-1.7.11 → agno-1.7.12}/agno/document/chunking/strategy.py +0 -0
  103. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/__init__.py +0 -0
  104. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/arxiv_reader.py +0 -0
  105. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/base.py +0 -0
  106. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/csv_reader.py +0 -0
  107. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/docx_reader.py +0 -0
  108. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/firecrawl_reader.py +0 -0
  109. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/gcs/__init__.py +0 -0
  110. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/gcs/pdf_reader.py +0 -0
  111. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/json_reader.py +0 -0
  112. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/markdown_reader.py +0 -0
  113. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/pdf_reader.py +0 -0
  114. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/s3/__init__.py +0 -0
  115. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/s3/pdf_reader.py +0 -0
  116. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/s3/text_reader.py +0 -0
  117. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/text_reader.py +0 -0
  118. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/url_reader.py +0 -0
  119. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/website_reader.py +0 -0
  120. {agno-1.7.11 → agno-1.7.12}/agno/document/reader/youtube_reader.py +0 -0
  121. {agno-1.7.11 → agno-1.7.12}/agno/embedder/__init__.py +0 -0
  122. {agno-1.7.11 → agno-1.7.12}/agno/embedder/aws_bedrock.py +0 -0
  123. {agno-1.7.11 → agno-1.7.12}/agno/embedder/azure_openai.py +0 -0
  124. {agno-1.7.11 → agno-1.7.12}/agno/embedder/base.py +0 -0
  125. {agno-1.7.11 → agno-1.7.12}/agno/embedder/cohere.py +0 -0
  126. {agno-1.7.11 → agno-1.7.12}/agno/embedder/fastembed.py +0 -0
  127. {agno-1.7.11 → agno-1.7.12}/agno/embedder/fireworks.py +0 -0
  128. {agno-1.7.11 → agno-1.7.12}/agno/embedder/huggingface.py +0 -0
  129. {agno-1.7.11 → agno-1.7.12}/agno/embedder/jina.py +0 -0
  130. {agno-1.7.11 → agno-1.7.12}/agno/embedder/langdb.py +0 -0
  131. {agno-1.7.11 → agno-1.7.12}/agno/embedder/mistral.py +0 -0
  132. {agno-1.7.11 → agno-1.7.12}/agno/embedder/nebius.py +0 -0
  133. {agno-1.7.11 → agno-1.7.12}/agno/embedder/ollama.py +0 -0
  134. {agno-1.7.11 → agno-1.7.12}/agno/embedder/openai.py +0 -0
  135. {agno-1.7.11 → agno-1.7.12}/agno/embedder/sentence_transformer.py +0 -0
  136. {agno-1.7.11 → agno-1.7.12}/agno/embedder/together.py +0 -0
  137. {agno-1.7.11 → agno-1.7.12}/agno/embedder/voyageai.py +0 -0
  138. {agno-1.7.11 → agno-1.7.12}/agno/eval/__init__.py +0 -0
  139. {agno-1.7.11 → agno-1.7.12}/agno/eval/accuracy.py +0 -0
  140. {agno-1.7.11 → agno-1.7.12}/agno/eval/performance.py +0 -0
  141. {agno-1.7.11 → agno-1.7.12}/agno/eval/reliability.py +0 -0
  142. {agno-1.7.11 → agno-1.7.12}/agno/eval/utils.py +0 -0
  143. {agno-1.7.11 → agno-1.7.12}/agno/exceptions.py +0 -0
  144. {agno-1.7.11 → agno-1.7.12}/agno/file/__init__.py +0 -0
  145. {agno-1.7.11 → agno-1.7.12}/agno/file/file.py +0 -0
  146. {agno-1.7.11 → agno-1.7.12}/agno/file/local/__init__.py +0 -0
  147. {agno-1.7.11 → agno-1.7.12}/agno/file/local/csv.py +0 -0
  148. {agno-1.7.11 → agno-1.7.12}/agno/file/local/txt.py +0 -0
  149. {agno-1.7.11 → agno-1.7.12}/agno/infra/__init__.py +0 -0
  150. {agno-1.7.11 → agno-1.7.12}/agno/infra/app.py +0 -0
  151. {agno-1.7.11 → agno-1.7.12}/agno/infra/base.py +0 -0
  152. {agno-1.7.11 → agno-1.7.12}/agno/infra/context.py +0 -0
  153. {agno-1.7.11 → agno-1.7.12}/agno/infra/db_app.py +0 -0
  154. {agno-1.7.11 → agno-1.7.12}/agno/infra/resource.py +0 -0
  155. {agno-1.7.11 → agno-1.7.12}/agno/infra/resources.py +0 -0
  156. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/__init__.py +0 -0
  157. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/agent.py +0 -0
  158. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/arxiv.py +0 -0
  159. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/combined.py +0 -0
  160. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/csv.py +0 -0
  161. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/csv_url.py +0 -0
  162. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/document.py +0 -0
  163. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/docx.py +0 -0
  164. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/firecrawl.py +0 -0
  165. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/gcs/__init__.py +0 -0
  166. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/gcs/base.py +0 -0
  167. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/json.py +0 -0
  168. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/langchain.py +0 -0
  169. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/light_rag.py +0 -0
  170. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/llamaindex.py +0 -0
  171. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/markdown.py +0 -0
  172. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/pdf.py +0 -0
  173. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/pdf_bytes.py +0 -0
  174. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/pdf_url.py +0 -0
  175. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/s3/__init__.py +0 -0
  176. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/s3/base.py +0 -0
  177. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/s3/pdf.py +0 -0
  178. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/s3/text.py +0 -0
  179. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/text.py +0 -0
  180. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/url.py +0 -0
  181. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/website.py +0 -0
  182. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/wikipedia.py +0 -0
  183. {agno-1.7.11 → agno-1.7.12}/agno/knowledge/youtube.py +0 -0
  184. {agno-1.7.11 → agno-1.7.12}/agno/media.py +0 -0
  185. {agno-1.7.11 → agno-1.7.12}/agno/memory/__init__.py +0 -0
  186. {agno-1.7.11 → agno-1.7.12}/agno/memory/agent.py +0 -0
  187. {agno-1.7.11 → agno-1.7.12}/agno/memory/classifier.py +0 -0
  188. {agno-1.7.11 → agno-1.7.12}/agno/memory/db/__init__.py +0 -0
  189. {agno-1.7.11 → agno-1.7.12}/agno/memory/db/base.py +0 -0
  190. {agno-1.7.11 → agno-1.7.12}/agno/memory/db/mongodb.py +0 -0
  191. {agno-1.7.11 → agno-1.7.12}/agno/memory/db/postgres.py +0 -0
  192. {agno-1.7.11 → agno-1.7.12}/agno/memory/db/sqlite.py +0 -0
  193. {agno-1.7.11 → agno-1.7.12}/agno/memory/manager.py +0 -0
  194. {agno-1.7.11 → agno-1.7.12}/agno/memory/memory.py +0 -0
  195. {agno-1.7.11 → agno-1.7.12}/agno/memory/row.py +0 -0
  196. {agno-1.7.11 → agno-1.7.12}/agno/memory/summarizer.py +0 -0
  197. {agno-1.7.11 → agno-1.7.12}/agno/memory/summary.py +0 -0
  198. {agno-1.7.11 → agno-1.7.12}/agno/memory/team.py +0 -0
  199. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/__init__.py +0 -0
  200. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/__init__.py +0 -0
  201. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/base.py +0 -0
  202. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/firestore.py +0 -0
  203. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/mongodb.py +0 -0
  204. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/postgres.py +0 -0
  205. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/redis.py +0 -0
  206. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/schema.py +0 -0
  207. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/db/sqlite.py +0 -0
  208. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/manager.py +0 -0
  209. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/memory.py +0 -0
  210. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/schema.py +0 -0
  211. {agno-1.7.11 → agno-1.7.12}/agno/memory/v2/summarizer.py +0 -0
  212. {agno-1.7.11 → agno-1.7.12}/agno/memory/workflow.py +0 -0
  213. {agno-1.7.11 → agno-1.7.12}/agno/models/__init__.py +0 -0
  214. {agno-1.7.11 → agno-1.7.12}/agno/models/aimlapi/__init__.py +0 -0
  215. {agno-1.7.11 → agno-1.7.12}/agno/models/aimlapi/aimlapi.py +0 -0
  216. {agno-1.7.11 → agno-1.7.12}/agno/models/anthropic/__init__.py +0 -0
  217. {agno-1.7.11 → agno-1.7.12}/agno/models/anthropic/claude.py +0 -0
  218. {agno-1.7.11 → agno-1.7.12}/agno/models/aws/__init__.py +0 -0
  219. {agno-1.7.11 → agno-1.7.12}/agno/models/aws/bedrock.py +0 -0
  220. {agno-1.7.11 → agno-1.7.12}/agno/models/aws/claude.py +0 -0
  221. {agno-1.7.11 → agno-1.7.12}/agno/models/azure/__init__.py +0 -0
  222. {agno-1.7.11 → agno-1.7.12}/agno/models/azure/ai_foundry.py +0 -0
  223. {agno-1.7.11 → agno-1.7.12}/agno/models/azure/openai_chat.py +0 -0
  224. {agno-1.7.11 → agno-1.7.12}/agno/models/base.py +0 -0
  225. {agno-1.7.11 → agno-1.7.12}/agno/models/cerebras/__init__.py +0 -0
  226. {agno-1.7.11 → agno-1.7.12}/agno/models/cerebras/cerebras.py +0 -0
  227. {agno-1.7.11 → agno-1.7.12}/agno/models/cerebras/cerebras_openai.py +0 -0
  228. {agno-1.7.11 → agno-1.7.12}/agno/models/cohere/__init__.py +0 -0
  229. {agno-1.7.11 → agno-1.7.12}/agno/models/cohere/chat.py +0 -0
  230. {agno-1.7.11 → agno-1.7.12}/agno/models/dashscope/__init__.py +0 -0
  231. {agno-1.7.11 → agno-1.7.12}/agno/models/dashscope/dashscope.py +0 -0
  232. {agno-1.7.11 → agno-1.7.12}/agno/models/deepinfra/__init__.py +0 -0
  233. {agno-1.7.11 → agno-1.7.12}/agno/models/deepinfra/deepinfra.py +0 -0
  234. {agno-1.7.11 → agno-1.7.12}/agno/models/deepseek/__init__.py +0 -0
  235. {agno-1.7.11 → agno-1.7.12}/agno/models/deepseek/deepseek.py +0 -0
  236. {agno-1.7.11 → agno-1.7.12}/agno/models/defaults.py +0 -0
  237. {agno-1.7.11 → agno-1.7.12}/agno/models/fireworks/__init__.py +0 -0
  238. {agno-1.7.11 → agno-1.7.12}/agno/models/fireworks/fireworks.py +0 -0
  239. {agno-1.7.11 → agno-1.7.12}/agno/models/google/__init__.py +0 -0
  240. {agno-1.7.11 → agno-1.7.12}/agno/models/groq/__init__.py +0 -0
  241. {agno-1.7.11 → agno-1.7.12}/agno/models/groq/groq.py +0 -0
  242. {agno-1.7.11 → agno-1.7.12}/agno/models/huggingface/__init__.py +0 -0
  243. {agno-1.7.11 → agno-1.7.12}/agno/models/huggingface/huggingface.py +0 -0
  244. {agno-1.7.11 → agno-1.7.12}/agno/models/ibm/__init__.py +0 -0
  245. {agno-1.7.11 → agno-1.7.12}/agno/models/ibm/watsonx.py +0 -0
  246. {agno-1.7.11 → agno-1.7.12}/agno/models/internlm/__init__.py +0 -0
  247. {agno-1.7.11 → agno-1.7.12}/agno/models/internlm/internlm.py +0 -0
  248. {agno-1.7.11 → agno-1.7.12}/agno/models/langdb/__init__.py +0 -0
  249. {agno-1.7.11 → agno-1.7.12}/agno/models/langdb/langdb.py +0 -0
  250. {agno-1.7.11 → agno-1.7.12}/agno/models/litellm/__init__.py +0 -0
  251. {agno-1.7.11 → agno-1.7.12}/agno/models/litellm/chat.py +0 -0
  252. {agno-1.7.11 → agno-1.7.12}/agno/models/litellm/litellm_openai.py +0 -0
  253. {agno-1.7.11 → agno-1.7.12}/agno/models/lmstudio/__init__.py +0 -0
  254. {agno-1.7.11 → agno-1.7.12}/agno/models/lmstudio/lmstudio.py +0 -0
  255. {agno-1.7.11 → agno-1.7.12}/agno/models/message.py +0 -0
  256. {agno-1.7.11 → agno-1.7.12}/agno/models/meta/__init__.py +0 -0
  257. {agno-1.7.11 → agno-1.7.12}/agno/models/meta/llama.py +0 -0
  258. {agno-1.7.11 → agno-1.7.12}/agno/models/meta/llama_openai.py +0 -0
  259. {agno-1.7.11 → agno-1.7.12}/agno/models/mistral/__init__.py +0 -0
  260. {agno-1.7.11 → agno-1.7.12}/agno/models/mistral/mistral.py +0 -0
  261. {agno-1.7.11 → agno-1.7.12}/agno/models/nebius/__init__.py +0 -0
  262. {agno-1.7.11 → agno-1.7.12}/agno/models/nebius/nebius.py +0 -0
  263. {agno-1.7.11 → agno-1.7.12}/agno/models/nvidia/__init__.py +0 -0
  264. {agno-1.7.11 → agno-1.7.12}/agno/models/nvidia/nvidia.py +0 -0
  265. {agno-1.7.11 → agno-1.7.12}/agno/models/ollama/__init__.py +0 -0
  266. {agno-1.7.11 → agno-1.7.12}/agno/models/ollama/chat.py +0 -0
  267. {agno-1.7.11 → agno-1.7.12}/agno/models/ollama/tools.py +0 -0
  268. {agno-1.7.11 → agno-1.7.12}/agno/models/openai/__init__.py +0 -0
  269. {agno-1.7.11 → agno-1.7.12}/agno/models/openai/like.py +0 -0
  270. {agno-1.7.11 → agno-1.7.12}/agno/models/openrouter/__init__.py +0 -0
  271. {agno-1.7.11 → agno-1.7.12}/agno/models/openrouter/openrouter.py +0 -0
  272. {agno-1.7.11 → agno-1.7.12}/agno/models/perplexity/__init__.py +0 -0
  273. {agno-1.7.11 → agno-1.7.12}/agno/models/perplexity/perplexity.py +0 -0
  274. {agno-1.7.11 → agno-1.7.12}/agno/models/portkey/__init__.py +0 -0
  275. {agno-1.7.11 → agno-1.7.12}/agno/models/portkey/portkey.py +0 -0
  276. {agno-1.7.11 → agno-1.7.12}/agno/models/qwen/__init__.py +0 -0
  277. {agno-1.7.11 → agno-1.7.12}/agno/models/response.py +0 -0
  278. {agno-1.7.11 → agno-1.7.12}/agno/models/sambanova/__init__.py +0 -0
  279. {agno-1.7.11 → agno-1.7.12}/agno/models/sambanova/sambanova.py +0 -0
  280. {agno-1.7.11 → agno-1.7.12}/agno/models/together/__init__.py +0 -0
  281. {agno-1.7.11 → agno-1.7.12}/agno/models/together/together.py +0 -0
  282. {agno-1.7.11 → agno-1.7.12}/agno/models/vercel/__init__.py +0 -0
  283. {agno-1.7.11 → agno-1.7.12}/agno/models/vercel/v0.py +0 -0
  284. {agno-1.7.11 → agno-1.7.12}/agno/models/vllm/__init__.py +0 -0
  285. {agno-1.7.11 → agno-1.7.12}/agno/models/vllm/vllm.py +0 -0
  286. {agno-1.7.11 → agno-1.7.12}/agno/models/xai/__init__.py +0 -0
  287. {agno-1.7.11 → agno-1.7.12}/agno/models/xai/xai.py +0 -0
  288. {agno-1.7.11 → agno-1.7.12}/agno/playground/__init__.py +0 -0
  289. {agno-1.7.11 → agno-1.7.12}/agno/playground/deploy.py +0 -0
  290. {agno-1.7.11 → agno-1.7.12}/agno/playground/playground.py +0 -0
  291. {agno-1.7.11 → agno-1.7.12}/agno/playground/serve.py +0 -0
  292. {agno-1.7.11 → agno-1.7.12}/agno/playground/settings.py +0 -0
  293. {agno-1.7.11 → agno-1.7.12}/agno/py.typed +0 -0
  294. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/__init__.py +0 -0
  295. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/azure_ai_foundry.py +0 -0
  296. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/deepseek.py +0 -0
  297. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/groq.py +0 -0
  298. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/ollama.py +0 -0
  299. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/openai.py +0 -0
  300. {agno-1.7.11 → agno-1.7.12}/agno/reasoning/step.py +0 -0
  301. {agno-1.7.11 → agno-1.7.12}/agno/reranker/__init__.py +0 -0
  302. {agno-1.7.11 → agno-1.7.12}/agno/reranker/base.py +0 -0
  303. {agno-1.7.11 → agno-1.7.12}/agno/reranker/cohere.py +0 -0
  304. {agno-1.7.11 → agno-1.7.12}/agno/reranker/infinity.py +0 -0
  305. {agno-1.7.11 → agno-1.7.12}/agno/reranker/sentence_transformer.py +0 -0
  306. {agno-1.7.11 → agno-1.7.12}/agno/run/__init__.py +0 -0
  307. {agno-1.7.11 → agno-1.7.12}/agno/run/base.py +0 -0
  308. {agno-1.7.11 → agno-1.7.12}/agno/run/messages.py +0 -0
  309. {agno-1.7.11 → agno-1.7.12}/agno/run/response.py +0 -0
  310. {agno-1.7.11 → agno-1.7.12}/agno/run/team.py +0 -0
  311. {agno-1.7.11 → agno-1.7.12}/agno/run/v2/__init__.py +0 -0
  312. {agno-1.7.11 → agno-1.7.12}/agno/run/v2/workflow.py +0 -0
  313. {agno-1.7.11 → agno-1.7.12}/agno/run/workflow.py +0 -0
  314. {agno-1.7.11 → agno-1.7.12}/agno/storage/__init__.py +0 -0
  315. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/__init__.py +0 -0
  316. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/dynamodb.py +0 -0
  317. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/json.py +0 -0
  318. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/mongodb.py +0 -0
  319. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/postgres.py +0 -0
  320. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/singlestore.py +0 -0
  321. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/sqlite.py +0 -0
  322. {agno-1.7.11 → agno-1.7.12}/agno/storage/agent/yaml.py +0 -0
  323. {agno-1.7.11 → agno-1.7.12}/agno/storage/base.py +0 -0
  324. {agno-1.7.11 → agno-1.7.12}/agno/storage/firestore.py +0 -0
  325. {agno-1.7.11 → agno-1.7.12}/agno/storage/gcs_json.py +0 -0
  326. {agno-1.7.11 → agno-1.7.12}/agno/storage/in_memory.py +0 -0
  327. {agno-1.7.11 → agno-1.7.12}/agno/storage/json.py +0 -0
  328. {agno-1.7.11 → agno-1.7.12}/agno/storage/mongodb.py +0 -0
  329. {agno-1.7.11 → agno-1.7.12}/agno/storage/mysql.py +0 -0
  330. {agno-1.7.11 → agno-1.7.12}/agno/storage/postgres.py +0 -0
  331. {agno-1.7.11 → agno-1.7.12}/agno/storage/redis.py +0 -0
  332. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/__init__.py +0 -0
  333. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/agent.py +0 -0
  334. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/team.py +0 -0
  335. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/v2/__init__.py +0 -0
  336. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/v2/workflow.py +0 -0
  337. {agno-1.7.11 → agno-1.7.12}/agno/storage/session/workflow.py +0 -0
  338. {agno-1.7.11 → agno-1.7.12}/agno/storage/singlestore.py +0 -0
  339. {agno-1.7.11 → agno-1.7.12}/agno/storage/sqlite.py +0 -0
  340. {agno-1.7.11 → agno-1.7.12}/agno/storage/workflow/__init__.py +0 -0
  341. {agno-1.7.11 → agno-1.7.12}/agno/storage/workflow/mongodb.py +0 -0
  342. {agno-1.7.11 → agno-1.7.12}/agno/storage/workflow/postgres.py +0 -0
  343. {agno-1.7.11 → agno-1.7.12}/agno/storage/workflow/sqlite.py +0 -0
  344. {agno-1.7.11 → agno-1.7.12}/agno/storage/yaml.py +0 -0
  345. {agno-1.7.11 → agno-1.7.12}/agno/team/__init__.py +0 -0
  346. {agno-1.7.11 → agno-1.7.12}/agno/tools/__init__.py +0 -0
  347. {agno-1.7.11 → agno-1.7.12}/agno/tools/agentql.py +0 -0
  348. {agno-1.7.11 → agno-1.7.12}/agno/tools/airflow.py +0 -0
  349. {agno-1.7.11 → agno-1.7.12}/agno/tools/api.py +0 -0
  350. {agno-1.7.11 → agno-1.7.12}/agno/tools/apify.py +0 -0
  351. {agno-1.7.11 → agno-1.7.12}/agno/tools/arxiv.py +0 -0
  352. {agno-1.7.11 → agno-1.7.12}/agno/tools/aws_lambda.py +0 -0
  353. {agno-1.7.11 → agno-1.7.12}/agno/tools/aws_ses.py +0 -0
  354. {agno-1.7.11 → agno-1.7.12}/agno/tools/baidusearch.py +0 -0
  355. {agno-1.7.11 → agno-1.7.12}/agno/tools/bitbucket.py +0 -0
  356. {agno-1.7.11 → agno-1.7.12}/agno/tools/brandfetch.py +0 -0
  357. {agno-1.7.11 → agno-1.7.12}/agno/tools/brightdata.py +0 -0
  358. {agno-1.7.11 → agno-1.7.12}/agno/tools/browserbase.py +0 -0
  359. {agno-1.7.11 → agno-1.7.12}/agno/tools/calcom.py +0 -0
  360. {agno-1.7.11 → agno-1.7.12}/agno/tools/cartesia.py +0 -0
  361. {agno-1.7.11 → agno-1.7.12}/agno/tools/clickup_tool.py +0 -0
  362. {agno-1.7.11 → agno-1.7.12}/agno/tools/confluence.py +0 -0
  363. {agno-1.7.11 → agno-1.7.12}/agno/tools/crawl4ai.py +0 -0
  364. {agno-1.7.11 → agno-1.7.12}/agno/tools/csv_toolkit.py +0 -0
  365. {agno-1.7.11 → agno-1.7.12}/agno/tools/dalle.py +0 -0
  366. {agno-1.7.11 → agno-1.7.12}/agno/tools/daytona.py +0 -0
  367. {agno-1.7.11 → agno-1.7.12}/agno/tools/decorator.py +0 -0
  368. {agno-1.7.11 → agno-1.7.12}/agno/tools/desi_vocal.py +0 -0
  369. {agno-1.7.11 → agno-1.7.12}/agno/tools/docker.py +0 -0
  370. {agno-1.7.11 → agno-1.7.12}/agno/tools/duckdb.py +0 -0
  371. {agno-1.7.11 → agno-1.7.12}/agno/tools/duckduckgo.py +0 -0
  372. {agno-1.7.11 → agno-1.7.12}/agno/tools/e2b.py +0 -0
  373. {agno-1.7.11 → agno-1.7.12}/agno/tools/eleven_labs.py +0 -0
  374. {agno-1.7.11 → agno-1.7.12}/agno/tools/email.py +0 -0
  375. {agno-1.7.11 → agno-1.7.12}/agno/tools/evm.py +0 -0
  376. {agno-1.7.11 → agno-1.7.12}/agno/tools/exa.py +0 -0
  377. {agno-1.7.11 → agno-1.7.12}/agno/tools/fal.py +0 -0
  378. {agno-1.7.11 → agno-1.7.12}/agno/tools/file.py +0 -0
  379. {agno-1.7.11 → agno-1.7.12}/agno/tools/financial_datasets.py +0 -0
  380. {agno-1.7.11 → agno-1.7.12}/agno/tools/firecrawl.py +0 -0
  381. {agno-1.7.11 → agno-1.7.12}/agno/tools/function.py +0 -0
  382. {agno-1.7.11 → agno-1.7.12}/agno/tools/giphy.py +0 -0
  383. {agno-1.7.11 → agno-1.7.12}/agno/tools/github.py +0 -0
  384. {agno-1.7.11 → agno-1.7.12}/agno/tools/gmail.py +0 -0
  385. {agno-1.7.11 → agno-1.7.12}/agno/tools/google_bigquery.py +0 -0
  386. {agno-1.7.11 → agno-1.7.12}/agno/tools/google_maps.py +0 -0
  387. {agno-1.7.11 → agno-1.7.12}/agno/tools/googlecalendar.py +0 -0
  388. {agno-1.7.11 → agno-1.7.12}/agno/tools/googlesearch.py +0 -0
  389. {agno-1.7.11 → agno-1.7.12}/agno/tools/googlesheets.py +0 -0
  390. {agno-1.7.11 → agno-1.7.12}/agno/tools/hackernews.py +0 -0
  391. {agno-1.7.11 → agno-1.7.12}/agno/tools/jina.py +0 -0
  392. {agno-1.7.11 → agno-1.7.12}/agno/tools/jira.py +0 -0
  393. {agno-1.7.11 → agno-1.7.12}/agno/tools/knowledge.py +0 -0
  394. {agno-1.7.11 → agno-1.7.12}/agno/tools/linear.py +0 -0
  395. {agno-1.7.11 → agno-1.7.12}/agno/tools/linkup.py +0 -0
  396. {agno-1.7.11 → agno-1.7.12}/agno/tools/local_file_system.py +0 -0
  397. {agno-1.7.11 → agno-1.7.12}/agno/tools/lumalab.py +0 -0
  398. {agno-1.7.11 → agno-1.7.12}/agno/tools/mcp.py +0 -0
  399. {agno-1.7.11 → agno-1.7.12}/agno/tools/mem0.py +0 -0
  400. {agno-1.7.11 → agno-1.7.12}/agno/tools/mlx_transcribe.py +0 -0
  401. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/__init__.py +0 -0
  402. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/azure_openai.py +0 -0
  403. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/gemini.py +0 -0
  404. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/groq.py +0 -0
  405. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/morph.py +0 -0
  406. {agno-1.7.11 → agno-1.7.12}/agno/tools/models/nebius.py +0 -0
  407. {agno-1.7.11 → agno-1.7.12}/agno/tools/models_labs.py +0 -0
  408. {agno-1.7.11 → agno-1.7.12}/agno/tools/moviepy_video.py +0 -0
  409. {agno-1.7.11 → agno-1.7.12}/agno/tools/newspaper.py +0 -0
  410. {agno-1.7.11 → agno-1.7.12}/agno/tools/newspaper4k.py +0 -0
  411. {agno-1.7.11 → agno-1.7.12}/agno/tools/openai.py +0 -0
  412. {agno-1.7.11 → agno-1.7.12}/agno/tools/openbb.py +0 -0
  413. {agno-1.7.11 → agno-1.7.12}/agno/tools/opencv.py +0 -0
  414. {agno-1.7.11 → agno-1.7.12}/agno/tools/openweather.py +0 -0
  415. {agno-1.7.11 → agno-1.7.12}/agno/tools/oxylabs.py +0 -0
  416. {agno-1.7.11 → agno-1.7.12}/agno/tools/pandas.py +0 -0
  417. {agno-1.7.11 → agno-1.7.12}/agno/tools/postgres.py +0 -0
  418. {agno-1.7.11 → agno-1.7.12}/agno/tools/pubmed.py +0 -0
  419. {agno-1.7.11 → agno-1.7.12}/agno/tools/python.py +0 -0
  420. {agno-1.7.11 → agno-1.7.12}/agno/tools/reasoning.py +0 -0
  421. {agno-1.7.11 → agno-1.7.12}/agno/tools/reddit.py +0 -0
  422. {agno-1.7.11 → agno-1.7.12}/agno/tools/replicate.py +0 -0
  423. {agno-1.7.11 → agno-1.7.12}/agno/tools/resend.py +0 -0
  424. {agno-1.7.11 → agno-1.7.12}/agno/tools/scrapegraph.py +0 -0
  425. {agno-1.7.11 → agno-1.7.12}/agno/tools/searxng.py +0 -0
  426. {agno-1.7.11 → agno-1.7.12}/agno/tools/serpapi.py +0 -0
  427. {agno-1.7.11 → agno-1.7.12}/agno/tools/serper.py +0 -0
  428. {agno-1.7.11 → agno-1.7.12}/agno/tools/shell.py +0 -0
  429. {agno-1.7.11 → agno-1.7.12}/agno/tools/slack.py +0 -0
  430. {agno-1.7.11 → agno-1.7.12}/agno/tools/sleep.py +0 -0
  431. {agno-1.7.11 → agno-1.7.12}/agno/tools/spider.py +0 -0
  432. {agno-1.7.11 → agno-1.7.12}/agno/tools/sql.py +0 -0
  433. {agno-1.7.11 → agno-1.7.12}/agno/tools/streamlit/__init__.py +0 -0
  434. {agno-1.7.11 → agno-1.7.12}/agno/tools/streamlit/components.py +0 -0
  435. {agno-1.7.11 → agno-1.7.12}/agno/tools/tavily.py +0 -0
  436. {agno-1.7.11 → agno-1.7.12}/agno/tools/telegram.py +0 -0
  437. {agno-1.7.11 → agno-1.7.12}/agno/tools/thinking.py +0 -0
  438. {agno-1.7.11 → agno-1.7.12}/agno/tools/todoist.py +0 -0
  439. {agno-1.7.11 → agno-1.7.12}/agno/tools/tool_registry.py +0 -0
  440. {agno-1.7.11 → agno-1.7.12}/agno/tools/toolkit.py +0 -0
  441. {agno-1.7.11 → agno-1.7.12}/agno/tools/trafilatura.py +0 -0
  442. {agno-1.7.11 → agno-1.7.12}/agno/tools/trello.py +0 -0
  443. {agno-1.7.11 → agno-1.7.12}/agno/tools/twilio.py +0 -0
  444. {agno-1.7.11 → agno-1.7.12}/agno/tools/user_control_flow.py +0 -0
  445. {agno-1.7.11 → agno-1.7.12}/agno/tools/valyu.py +0 -0
  446. {agno-1.7.11 → agno-1.7.12}/agno/tools/visualization.py +0 -0
  447. {agno-1.7.11 → agno-1.7.12}/agno/tools/webbrowser.py +0 -0
  448. {agno-1.7.11 → agno-1.7.12}/agno/tools/webex.py +0 -0
  449. {agno-1.7.11 → agno-1.7.12}/agno/tools/website.py +0 -0
  450. {agno-1.7.11 → agno-1.7.12}/agno/tools/webtools.py +0 -0
  451. {agno-1.7.11 → agno-1.7.12}/agno/tools/whatsapp.py +0 -0
  452. {agno-1.7.11 → agno-1.7.12}/agno/tools/wikipedia.py +0 -0
  453. {agno-1.7.11 → agno-1.7.12}/agno/tools/x.py +0 -0
  454. {agno-1.7.11 → agno-1.7.12}/agno/tools/yfinance.py +0 -0
  455. {agno-1.7.11 → agno-1.7.12}/agno/tools/zendesk.py +0 -0
  456. {agno-1.7.11 → agno-1.7.12}/agno/tools/zep.py +0 -0
  457. {agno-1.7.11 → agno-1.7.12}/agno/tools/zoom.py +0 -0
  458. {agno-1.7.11 → agno-1.7.12}/agno/utils/__init__.py +0 -0
  459. {agno-1.7.11 → agno-1.7.12}/agno/utils/audio.py +0 -0
  460. {agno-1.7.11 → agno-1.7.12}/agno/utils/certs.py +0 -0
  461. {agno-1.7.11 → agno-1.7.12}/agno/utils/code_execution.py +0 -0
  462. {agno-1.7.11 → agno-1.7.12}/agno/utils/common.py +0 -0
  463. {agno-1.7.11 → agno-1.7.12}/agno/utils/defaults.py +0 -0
  464. {agno-1.7.11 → agno-1.7.12}/agno/utils/dttm.py +0 -0
  465. {agno-1.7.11 → agno-1.7.12}/agno/utils/enum.py +0 -0
  466. {agno-1.7.11 → agno-1.7.12}/agno/utils/env.py +0 -0
  467. {agno-1.7.11 → agno-1.7.12}/agno/utils/events.py +0 -0
  468. {agno-1.7.11 → agno-1.7.12}/agno/utils/filesystem.py +0 -0
  469. {agno-1.7.11 → agno-1.7.12}/agno/utils/format_str.py +0 -0
  470. {agno-1.7.11 → agno-1.7.12}/agno/utils/functions.py +0 -0
  471. {agno-1.7.11 → agno-1.7.12}/agno/utils/gemini.py +0 -0
  472. {agno-1.7.11 → agno-1.7.12}/agno/utils/git.py +0 -0
  473. {agno-1.7.11 → agno-1.7.12}/agno/utils/http.py +0 -0
  474. {agno-1.7.11 → agno-1.7.12}/agno/utils/json_io.py +0 -0
  475. {agno-1.7.11 → agno-1.7.12}/agno/utils/json_schema.py +0 -0
  476. {agno-1.7.11 → agno-1.7.12}/agno/utils/load_env.py +0 -0
  477. {agno-1.7.11 → agno-1.7.12}/agno/utils/location.py +0 -0
  478. {agno-1.7.11 → agno-1.7.12}/agno/utils/log.py +0 -0
  479. {agno-1.7.11 → agno-1.7.12}/agno/utils/mcp.py +0 -0
  480. {agno-1.7.11 → agno-1.7.12}/agno/utils/media.py +0 -0
  481. {agno-1.7.11 → agno-1.7.12}/agno/utils/merge_dict.py +0 -0
  482. {agno-1.7.11 → agno-1.7.12}/agno/utils/message.py +0 -0
  483. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/__init__.py +0 -0
  484. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/ai_foundry.py +0 -0
  485. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/aws_claude.py +0 -0
  486. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/claude.py +0 -0
  487. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/cohere.py +0 -0
  488. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/llama.py +0 -0
  489. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/mistral.py +0 -0
  490. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/openai_responses.py +0 -0
  491. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/schema_utils.py +0 -0
  492. {agno-1.7.11 → agno-1.7.12}/agno/utils/models/watsonx.py +0 -0
  493. {agno-1.7.11 → agno-1.7.12}/agno/utils/openai.py +0 -0
  494. {agno-1.7.11 → agno-1.7.12}/agno/utils/pickle.py +0 -0
  495. {agno-1.7.11 → agno-1.7.12}/agno/utils/pprint.py +0 -0
  496. {agno-1.7.11 → agno-1.7.12}/agno/utils/prompts.py +0 -0
  497. {agno-1.7.11 → agno-1.7.12}/agno/utils/py_io.py +0 -0
  498. {agno-1.7.11 → agno-1.7.12}/agno/utils/pyproject.py +0 -0
  499. {agno-1.7.11 → agno-1.7.12}/agno/utils/resource_filter.py +0 -0
  500. {agno-1.7.11 → agno-1.7.12}/agno/utils/response.py +0 -0
  501. {agno-1.7.11 → agno-1.7.12}/agno/utils/response_iterator.py +0 -0
  502. {agno-1.7.11 → agno-1.7.12}/agno/utils/safe_formatter.py +0 -0
  503. {agno-1.7.11 → agno-1.7.12}/agno/utils/shell.py +0 -0
  504. {agno-1.7.11 → agno-1.7.12}/agno/utils/string.py +0 -0
  505. {agno-1.7.11 → agno-1.7.12}/agno/utils/timer.py +0 -0
  506. {agno-1.7.11 → agno-1.7.12}/agno/utils/tools.py +0 -0
  507. {agno-1.7.11 → agno-1.7.12}/agno/utils/web.py +0 -0
  508. {agno-1.7.11 → agno-1.7.12}/agno/utils/whatsapp.py +0 -0
  509. {agno-1.7.11 → agno-1.7.12}/agno/utils/yaml_io.py +0 -0
  510. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/__init__.py +0 -0
  511. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/base.py +0 -0
  512. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/cassandra/__init__.py +0 -0
  513. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/cassandra/cassandra.py +0 -0
  514. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/cassandra/extra_param_mixin.py +0 -0
  515. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/cassandra/index.py +0 -0
  516. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/chroma/__init__.py +0 -0
  517. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/chroma/chromadb.py +0 -0
  518. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/clickhouse/__init__.py +0 -0
  519. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/clickhouse/clickhousedb.py +0 -0
  520. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/clickhouse/index.py +0 -0
  521. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/couchbase/__init__.py +0 -0
  522. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/couchbase/couchbase.py +0 -0
  523. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/distance.py +0 -0
  524. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/lancedb/__init__.py +0 -0
  525. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/lancedb/lance_db.py +0 -0
  526. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/milvus/__init__.py +0 -0
  527. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/milvus/milvus.py +0 -0
  528. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/mongodb/__init__.py +0 -0
  529. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/mongodb/mongodb.py +0 -0
  530. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/pgvector/__init__.py +0 -0
  531. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/pgvector/index.py +0 -0
  532. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/pgvector/pgvector.py +0 -0
  533. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/pineconedb/__init__.py +0 -0
  534. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/pineconedb/pineconedb.py +0 -0
  535. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/qdrant/__init__.py +0 -0
  536. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/qdrant/qdrant.py +0 -0
  537. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/search.py +0 -0
  538. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/singlestore/__init__.py +0 -0
  539. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/singlestore/index.py +0 -0
  540. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/singlestore/singlestore.py +0 -0
  541. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/surrealdb/__init__.py +0 -0
  542. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/surrealdb/surrealdb.py +0 -0
  543. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/upstashdb/__init__.py +0 -0
  544. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/upstashdb/upstashdb.py +0 -0
  545. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/weaviate/__init__.py +0 -0
  546. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/weaviate/index.py +0 -0
  547. {agno-1.7.11 → agno-1.7.12}/agno/vectordb/weaviate/weaviate.py +0 -0
  548. {agno-1.7.11 → agno-1.7.12}/agno/workflow/__init__.py +0 -0
  549. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/__init__.py +0 -0
  550. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/condition.py +0 -0
  551. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/loop.py +0 -0
  552. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/parallel.py +0 -0
  553. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/router.py +0 -0
  554. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/step.py +0 -0
  555. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/steps.py +0 -0
  556. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/types.py +0 -0
  557. {agno-1.7.11 → agno-1.7.12}/agno/workflow/v2/workflow.py +0 -0
  558. {agno-1.7.11 → agno-1.7.12}/agno/workflow/workflow.py +0 -0
  559. {agno-1.7.11 → agno-1.7.12}/agno/workspace/__init__.py +0 -0
  560. {agno-1.7.11 → agno-1.7.12}/agno/workspace/config.py +0 -0
  561. {agno-1.7.11 → agno-1.7.12}/agno/workspace/enums.py +0 -0
  562. {agno-1.7.11 → agno-1.7.12}/agno/workspace/helpers.py +0 -0
  563. {agno-1.7.11 → agno-1.7.12}/agno/workspace/operator.py +0 -0
  564. {agno-1.7.11 → agno-1.7.12}/agno/workspace/settings.py +0 -0
  565. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/SOURCES.txt +0 -0
  566. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/dependency_links.txt +0 -0
  567. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/entry_points.txt +0 -0
  568. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/requires.txt +0 -0
  569. {agno-1.7.11 → agno-1.7.12}/agno.egg-info/top_level.txt +0 -0
  570. {agno-1.7.11 → agno-1.7.12}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agno
3
- Version: 1.7.11
3
+ Version: 1.7.12
4
4
  Summary: Agno: a lightweight library for building Multi-Agent Systems
5
5
  Author-email: Ashpreet Bedi <ashpreet@agno.com>
6
6
  License: Copyright (c) Agno, Inc.
@@ -5885,6 +5885,9 @@ class Agent:
5885
5885
  telemetry=self.telemetry,
5886
5886
  debug_mode=self.debug_mode,
5887
5887
  debug_level=self.debug_level,
5888
+ session_state=self.session_state,
5889
+ context=self.context,
5890
+ extra_data=self.extra_data,
5888
5891
  )
5889
5892
  is_deepseek = is_deepseek_reasoning_model(reasoning_model)
5890
5893
  is_groq = is_groq_reasoning_model(reasoning_model)
@@ -5974,6 +5977,9 @@ class Agent:
5974
5977
  telemetry=self.telemetry,
5975
5978
  debug_mode=self.debug_mode,
5976
5979
  debug_level=self.debug_level,
5980
+ session_state=self.session_state,
5981
+ context=self.context,
5982
+ extra_data=self.extra_data,
5977
5983
  )
5978
5984
 
5979
5985
  # Validate reasoning agent
@@ -6108,6 +6114,9 @@ class Agent:
6108
6114
  telemetry=self.telemetry,
6109
6115
  debug_mode=self.debug_mode,
6110
6116
  debug_level=self.debug_level,
6117
+ session_state=self.session_state,
6118
+ context=self.context,
6119
+ extra_data=self.extra_data,
6111
6120
  )
6112
6121
  is_deepseek = is_deepseek_reasoning_model(reasoning_model)
6113
6122
  is_groq = is_groq_reasoning_model(reasoning_model)
@@ -6197,6 +6206,9 @@ class Agent:
6197
6206
  telemetry=self.telemetry,
6198
6207
  debug_mode=self.debug_mode,
6199
6208
  debug_level=self.debug_level,
6209
+ session_state=self.session_state,
6210
+ context=self.context,
6211
+ extra_data=self.extra_data,
6200
6212
  )
6201
6213
 
6202
6214
  # Validate reasoning agent
@@ -7443,6 +7455,7 @@ class Agent:
7443
7455
  if citation.url # Only include citations with valid URLs
7444
7456
  )
7445
7457
  if md_content: # Only create panel if there are citations
7458
+ md_content = md_content.strip()
7446
7459
  citations_panel = create_panel(
7447
7460
  content=Markdown(md_content),
7448
7461
  title="Citations",
@@ -23,6 +23,10 @@ class GeminiEmbedder(Embedder):
23
23
  request_params: Optional[Dict[str, Any]] = None
24
24
  client_params: Optional[Dict[str, Any]] = None
25
25
  gemini_client: Optional[GeminiClient] = None
26
+ # Vertex AI parameters
27
+ vertexai: bool = False
28
+ project_id: Optional[str] = None
29
+ location: Optional[str] = None
26
30
 
27
31
  @property
28
32
  def client(self):
@@ -30,13 +34,21 @@ class GeminiEmbedder(Embedder):
30
34
  return self.gemini_client
31
35
 
32
36
  _client_params: Dict[str, Any] = {}
37
+ vertexai = self.vertexai or getenv("GOOGLE_GENAI_USE_VERTEXAI", "false").lower() == "true"
33
38
 
34
- self.api_key = self.api_key or getenv("GOOGLE_API_KEY")
35
- if not self.api_key:
36
- log_error("GOOGLE_API_KEY not set. Please set the GOOGLE_API_KEY environment variable.")
37
-
38
- if self.api_key:
39
+ if not vertexai:
40
+ self.api_key = self.api_key or getenv("GOOGLE_API_KEY")
41
+ if not self.api_key:
42
+ log_error("GOOGLE_API_KEY not set. Please set the GOOGLE_API_KEY environment variable.")
39
43
  _client_params["api_key"] = self.api_key
44
+ else:
45
+ log_info("Using Vertex AI API for embeddings")
46
+ _client_params["vertexai"] = True
47
+ _client_params["project"] = self.project_id or getenv("GOOGLE_CLOUD_PROJECT")
48
+ _client_params["location"] = self.location or getenv("GOOGLE_CLOUD_LOCATION")
49
+
50
+ _client_params = {k: v for k, v in _client_params.items() if v is not None}
51
+
40
52
  if self.client_params:
41
53
  _client_params.update(self.client_params)
42
54
 
@@ -0,0 +1,125 @@
1
+ from typing import AsyncIterator, Iterator, List, Optional, Dict, Any
2
+
3
+ from agno.document import Document
4
+ from agno.document.reader.gcs.pdf_reader import GCSPDFReader
5
+ from agno.knowledge.gcs.base import GCSKnowledgeBase
6
+ from agno.utils.log import log_debug, log_info
7
+
8
+
9
+ class GCSPDFKnowledgeBase(GCSKnowledgeBase):
10
+ reader: GCSPDFReader = GCSPDFReader()
11
+
12
+ @property
13
+ def document_lists(self) -> Iterator[List[Document]]:
14
+ for blob in self.gcs_blobs:
15
+ if blob.name.endswith(".pdf"):
16
+ yield self.reader.read(blob=blob)
17
+
18
+ @property
19
+ async def async_document_lists(self) -> AsyncIterator[List[Document]]:
20
+ for blob in self.gcs_blobs:
21
+ if blob.name.endswith(".pdf"):
22
+ yield await self.reader.async_read(blob=blob)
23
+
24
+ def load(
25
+ self,
26
+ recreate: bool = False,
27
+ upsert: bool = False,
28
+ skip_existing: bool = True,
29
+ ) -> None:
30
+ """Load the knowledge base to the vector db
31
+ Args:
32
+ recreate (bool): If True, recreates the collection in the vector db. Defaults to False.
33
+ upsert (bool): If True, upserts documents to the vector db. Defaults to False.
34
+ skip_existing (bool): If True, skips documents which already exist in the vector db when inserting. Defaults to True.
35
+ """
36
+ self._load_init(recreate, upsert)
37
+ if self.vector_db is None:
38
+ return
39
+
40
+ log_info("Loading knowledge base")
41
+ num_documents = 0
42
+ for document_list in self.document_lists:
43
+ documents_to_load = document_list
44
+
45
+ # Track metadata for filtering capabilities and collect metadata for filters
46
+ filters_metadata: Optional[Dict[str, Any]] = None
47
+ for doc in document_list:
48
+ if doc.meta_data:
49
+ self._track_metadata_structure(doc.meta_data)
50
+ # Use the first non-None metadata for filters
51
+ if filters_metadata is None:
52
+ filters_metadata = doc.meta_data
53
+
54
+ # Skip processing if no documents in this batch
55
+ if not documents_to_load:
56
+ log_debug("Skipping empty document batch")
57
+ continue
58
+
59
+ # Upsert documents if upsert is True and vector db supports upsert
60
+ if upsert and self.vector_db.upsert_available():
61
+ self.vector_db.upsert(documents=documents_to_load, filters=filters_metadata)
62
+ # Insert documents
63
+ else:
64
+ # Filter out documents which already exist in the vector db
65
+ if skip_existing:
66
+ log_debug("Filtering out existing documents before insertion.")
67
+ documents_to_load = self.filter_existing_documents(document_list)
68
+
69
+ if documents_to_load:
70
+ self.vector_db.insert(documents=documents_to_load, filters=filters_metadata)
71
+
72
+ num_documents += len(documents_to_load)
73
+ log_info(f"Added {num_documents} documents to knowledge base")
74
+
75
+ async def aload(
76
+ self,
77
+ recreate: bool = False,
78
+ upsert: bool = False,
79
+ skip_existing: bool = True,
80
+ ) -> None:
81
+ """Load the knowledge base to the vector db asynchronously
82
+ Args:
83
+ recreate (bool): If True, recreates the collection in the vector db. Defaults to False.
84
+ upsert (bool): If True, upserts documents to the vector db. Defaults to False.
85
+ skip_existing (bool): If True, skips documents which already exist in the vector db when inserting. Defaults to True.
86
+ """
87
+ await self._aload_init(recreate, upsert)
88
+ if self.vector_db is None:
89
+ return
90
+
91
+ log_info("Loading knowledge base")
92
+ num_documents = 0
93
+ document_iterator = self.async_document_lists
94
+ async for document_list in document_iterator: # type: ignore
95
+ documents_to_load = document_list
96
+
97
+ # Track metadata for filtering capabilities and collect metadata for filters
98
+ filters_metadata: Optional[Dict[str, Any]] = None
99
+ for doc in document_list:
100
+ if doc.meta_data:
101
+ self._track_metadata_structure(doc.meta_data)
102
+ # Use the first non-None metadata for filters
103
+ if filters_metadata is None:
104
+ filters_metadata = doc.meta_data
105
+
106
+ # Skip processing if no documents in this batch
107
+ if not documents_to_load:
108
+ log_debug("Skipping empty document batch")
109
+ continue
110
+
111
+ # Upsert documents if upsert is True and vector db supports upsert
112
+ if upsert and self.vector_db.upsert_available():
113
+ await self.vector_db.async_upsert(documents=documents_to_load, filters=filters_metadata)
114
+ # Insert documents
115
+ else:
116
+ # Filter out documents which already exist in the vector db
117
+ if skip_existing:
118
+ log_debug("Filtering out existing documents before insertion.")
119
+ documents_to_load = await self.async_filter_existing_documents(document_list)
120
+
121
+ if documents_to_load:
122
+ await self.vector_db.async_insert(documents=documents_to_load, filters=filters_metadata)
123
+
124
+ num_documents += len(documents_to_load)
125
+ log_info(f"Added {num_documents} documents to knowledge base")
@@ -32,6 +32,7 @@ try:
32
32
  Part,
33
33
  ThinkingConfig,
34
34
  Tool,
35
+ UrlContext,
35
36
  )
36
37
  from google.genai.types import (
37
38
  File as GeminiFile,
@@ -68,6 +69,7 @@ class Gemini(Model):
68
69
  search: bool = False
69
70
  grounding: bool = False
70
71
  grounding_dynamic_threshold: Optional[float] = None
72
+ url_context: bool = False
71
73
 
72
74
  temperature: Optional[float] = None
73
75
  top_p: Optional[float] = None
@@ -115,7 +117,6 @@ class Gemini(Model):
115
117
  """
116
118
  if self.client:
117
119
  return self.client
118
-
119
120
  client_params: Dict[str, Any] = {}
120
121
  vertexai = self.vertexai or getenv("GOOGLE_GENAI_USE_VERTEXAI", "false").lower() == "true"
121
122
 
@@ -199,26 +200,34 @@ class Gemini(Model):
199
200
  if thinking_config_params:
200
201
  config["thinking_config"] = ThinkingConfig(**thinking_config_params)
201
202
 
202
- if self.grounding and self.search:
203
- log_info("Both grounding and search are enabled. Grounding will take precedence.")
204
- self.search = False
203
+ # Build tools array based on enabled built-in tools
204
+ builtin_tools = []
205
205
 
206
206
  if self.grounding:
207
- log_info("Grounding enabled. External tools will be disabled.")
208
- config["tools"] = [
207
+ log_info("Grounding enabled. This is a legacy tool. For Gemini 2.0+ Please use enable `search` flag instead.")
208
+ builtin_tools.append(
209
209
  Tool(
210
210
  google_search=GoogleSearchRetrieval(
211
211
  dynamic_retrieval_config=DynamicRetrievalConfig(
212
212
  dynamic_threshold=self.grounding_dynamic_threshold
213
213
  )
214
214
  )
215
- ),
216
- ]
215
+ )
216
+ )
217
217
 
218
- elif self.search:
219
- log_info("Search enabled. External tools will be disabled.")
220
- config["tools"] = [Tool(google_search=GoogleSearch())]
218
+ if self.search:
219
+ log_info("Google Search enabled.")
220
+ builtin_tools.append(Tool(google_search=GoogleSearch()))
221
221
 
222
+ if self.url_context:
223
+ log_info("URL context enabled.")
224
+ builtin_tools.append(Tool(url_context=UrlContext()))
225
+
226
+ # Set tools in config
227
+ if builtin_tools:
228
+ if tools:
229
+ log_info("Built-in tools enabled. External tools will be disabled.")
230
+ config["tools"] = builtin_tools
222
231
  elif tools:
223
232
  config["tools"] = [format_function_definitions(tools)]
224
233
 
@@ -388,7 +397,10 @@ class Gemini(Model):
388
397
  message_parts: List[Any] = []
389
398
 
390
399
  # Function calls
391
- if (not content or role == "model") and message.tool_calls is not None and len(message.tool_calls) > 0:
400
+ if role == "model" and message.tool_calls is not None and len(message.tool_calls) > 0:
401
+ if content is not None:
402
+ content_str = content if isinstance(content, str) else str(content)
403
+ message_parts.append(Part.from_text(text=content_str))
392
404
  for tool_call in message.tool_calls:
393
405
  message_parts.append(
394
406
  Part.from_function_call(
@@ -396,7 +408,7 @@ class Gemini(Model):
396
408
  args=json.loads(tool_call["function"]["arguments"]),
397
409
  )
398
410
  )
399
- # Function results
411
+ # Function call results
400
412
  elif message.tool_calls is not None and len(message.tool_calls) > 0:
401
413
  for tool_call in message.tool_calls:
402
414
  message_parts.append(
@@ -758,13 +770,15 @@ class Gemini(Model):
758
770
 
759
771
  model_response.tool_calls.append(tool_call)
760
772
 
773
+ citations = Citations()
774
+ citations_raw = {}
775
+ citations_urls = []
776
+
761
777
  if response.candidates and response.candidates[0].grounding_metadata is not None:
762
- citations = Citations()
763
778
  grounding_metadata = response.candidates[0].grounding_metadata.model_dump()
764
- citations.raw = grounding_metadata
779
+ citations_raw["grounding_metadata"] = grounding_metadata
765
780
 
766
- # Extract url and title
767
- chunks = grounding_metadata.pop("grounding_chunks", None) or []
781
+ chunks = grounding_metadata.get("grounding_chunks", [])
768
782
  citation_pairs = [
769
783
  (chunk.get("web", {}).get("uri"), chunk.get("web", {}).get("title"))
770
784
  for chunk in chunks
@@ -772,8 +786,31 @@ class Gemini(Model):
772
786
  ]
773
787
 
774
788
  # Create citation objects from filtered pairs
775
- citations.urls = [UrlCitation(url=url, title=title) for url, title in citation_pairs]
776
-
789
+ grounding_urls = [UrlCitation(url=url, title=title) for url, title in citation_pairs]
790
+ citations_urls.extend(grounding_urls)
791
+
792
+ # Handle URLs from URL context tool
793
+ if (
794
+ response.candidates
795
+ and hasattr(response.candidates[0], "url_context_metadata")
796
+ and response.candidates[0].url_context_metadata is not None
797
+ ):
798
+ url_context_metadata = response.candidates[0].url_context_metadata.model_dump()
799
+ citations_raw["url_context_metadata"] = url_context_metadata
800
+
801
+ url_metadata_list = url_context_metadata.get("url_metadata", [])
802
+ for url_meta in url_metadata_list:
803
+ retrieved_url = url_meta.get("retrieved_url")
804
+ status = url_meta.get("url_retrieval_status", "UNKNOWN")
805
+ if retrieved_url and status == "URL_RETRIEVAL_STATUS_SUCCESS":
806
+ # Avoid duplicate URLs
807
+ existing_urls = [citation.url for citation in citations_urls]
808
+ if retrieved_url not in existing_urls:
809
+ citations_urls.append(UrlCitation(url=retrieved_url, title=retrieved_url))
810
+
811
+ if citations_raw or citations_urls:
812
+ citations.raw = citations_raw if citations_raw else None
813
+ citations.urls = citations_urls if citations_urls else None
777
814
  model_response.citations = citations
778
815
 
779
816
  # Extract usage metadata if present
@@ -1,7 +1,7 @@
1
1
  from collections.abc import AsyncIterator
2
2
  from dataclasses import dataclass
3
3
  from os import getenv
4
- from typing import Any, Dict, Iterator, List, Optional, Type, Union
4
+ from typing import Any, Dict, Iterator, List, Literal, Optional, Type, Union
5
5
 
6
6
  import httpx
7
7
  from pydantic import BaseModel
@@ -45,6 +45,7 @@ class OpenAIChat(Model):
45
45
  # Request parameters
46
46
  store: Optional[bool] = None
47
47
  reasoning_effort: Optional[str] = None
48
+ verbosity: Optional[Literal["low", "medium", "high"]] = None
48
49
  metadata: Optional[Dict[str, Any]] = None
49
50
  frequency_penalty: Optional[float] = None
50
51
  logit_bias: Optional[Any] = None
@@ -159,6 +160,7 @@ class OpenAIChat(Model):
159
160
  base_params = {
160
161
  "store": self.store,
161
162
  "reasoning_effort": self.reasoning_effort,
163
+ "verbosity": self.verbosity,
162
164
  "frequency_penalty": self.frequency_penalty,
163
165
  "logit_bias": self.logit_bias,
164
166
  "logprobs": self.logprobs,
@@ -227,6 +229,8 @@ class OpenAIChat(Model):
227
229
  model_dict.update(
228
230
  {
229
231
  "store": self.store,
232
+ "reasoning_effort": self.reasoning_effort,
233
+ "verbosity": self.verbosity,
230
234
  "frequency_penalty": self.frequency_penalty,
231
235
  "logit_bias": self.logit_bias,
232
236
  "logprobs": self.logprobs,
@@ -42,6 +42,8 @@ class OpenAIResponses(Model):
42
42
  metadata: Optional[Dict[str, Any]] = None
43
43
  parallel_tool_calls: Optional[bool] = None
44
44
  reasoning: Optional[Dict[str, Any]] = None
45
+ verbosity: Optional[Literal["low", "medium", "high"]] = None
46
+ reasoning_effort: Optional[Literal["minimal", "medium", "high"]] = None
45
47
  store: Optional[bool] = None
46
48
  temperature: Optional[float] = None
47
49
  top_p: Optional[float] = None
@@ -176,7 +178,6 @@ class OpenAIResponses(Model):
176
178
  "max_tool_calls": self.max_tool_calls,
177
179
  "metadata": self.metadata,
178
180
  "parallel_tool_calls": self.parallel_tool_calls,
179
- "reasoning": self.reasoning,
180
181
  "store": self.store,
181
182
  "temperature": self.temperature,
182
183
  "top_p": self.top_p,
@@ -184,21 +185,37 @@ class OpenAIResponses(Model):
184
185
  "user": self.user,
185
186
  "service_tier": self.service_tier,
186
187
  }
188
+
189
+ # Handle reasoning parameter - convert reasoning_effort to reasoning format
190
+ if self.reasoning is not None:
191
+ base_params["reasoning"] = self.reasoning
192
+ elif self.reasoning_effort is not None:
193
+ base_params["reasoning"] = {"effort": self.reasoning_effort}
194
+
195
+ # Build text parameter
196
+ text_params: Dict[str, Any] = {}
197
+
198
+ # Add verbosity if specified
199
+ if self.verbosity is not None:
200
+ text_params["verbosity"] = self.verbosity
201
+
187
202
  # Set the response format
188
203
  if response_format is not None:
189
204
  if isinstance(response_format, type) and issubclass(response_format, BaseModel):
190
205
  schema = get_response_schema_for_provider(response_format, "openai")
191
- base_params["text"] = {
192
- "format": {
193
- "type": "json_schema",
194
- "name": response_format.__name__,
195
- "schema": schema,
196
- "strict": True,
197
- }
206
+ text_params["format"] = {
207
+ "type": "json_schema",
208
+ "name": response_format.__name__,
209
+ "schema": schema,
210
+ "strict": True,
198
211
  }
199
212
  else:
200
213
  # JSON mode
201
- base_params["text"] = {"format": {"type": "json_object"}}
214
+ text_params["format"] = {"type": "json_object"}
215
+
216
+ # Add text parameter if there are any text-level params
217
+ if text_params:
218
+ base_params["text"] = text_params
202
219
 
203
220
  # Filter out None values
204
221
  request_params: Dict[str, Any] = {k: v for k, v in base_params.items() if v is not None}
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  from textwrap import dedent
4
- from typing import Callable, Dict, List, Literal, Optional, Union
4
+ from typing import Any, Callable, Dict, List, Literal, Optional, Union
5
5
 
6
6
  from agno.models.base import Model
7
7
  from agno.reasoning.step import ReasoningSteps
@@ -19,6 +19,9 @@ def get_default_reasoning_agent(
19
19
  telemetry: bool = True,
20
20
  debug_mode: bool = False,
21
21
  debug_level: Literal[1, 2] = 1,
22
+ session_state: Optional[Dict[str, Any]] = None,
23
+ context: Optional[Dict[str, Any]] = None,
24
+ extra_data: Optional[Dict[str, Any]] = None,
22
25
  ) -> Optional["Agent"]: # type: ignore # noqa: F821
23
26
  from agno.agent import Agent
24
27
 
@@ -87,6 +90,9 @@ def get_default_reasoning_agent(
87
90
  telemetry=telemetry,
88
91
  debug_mode=debug_mode,
89
92
  debug_level=debug_level,
93
+ session_state=session_state,
94
+ context=context,
95
+ extra_data=extra_data,
90
96
  )
91
97
 
92
98
  agent.model.show_tool_calls = False # type: ignore
@@ -1,4 +1,4 @@
1
- from typing import List, Literal
1
+ from typing import Any, Dict, List, Literal, Optional
2
2
 
3
3
  from agno.models.base import Model
4
4
  from agno.models.message import Message
@@ -13,6 +13,9 @@ def get_reasoning_agent(
13
13
  telemetry: bool = False,
14
14
  debug_mode: bool = False,
15
15
  debug_level: Literal[1, 2] = 1,
16
+ session_state: Optional[Dict[str, Any]] = None,
17
+ context: Optional[Dict[str, Any]] = None,
18
+ extra_data: Optional[Dict[str, Any]] = None,
16
19
  ) -> "Agent": # type: ignore # noqa: F821
17
20
  from agno.agent import Agent
18
21
 
@@ -22,6 +25,9 @@ def get_reasoning_agent(
22
25
  telemetry=telemetry,
23
26
  debug_mode=debug_mode,
24
27
  debug_level=debug_level,
28
+ session_state=session_state,
29
+ context=context,
30
+ extra_data=extra_data,
25
31
  )
26
32
 
27
33
 
@@ -30,19 +30,23 @@ class DynamoDbStorage(Storage):
30
30
  endpoint_url: Optional[str] = None,
31
31
  create_table_if_not_exists: bool = True,
32
32
  mode: Optional[Literal["agent", "team", "workflow", "workflow_v2"]] = "agent",
33
+ create_table_read_capacity_units: int = 5,
34
+ create_table_write_capacity_units: int = 5,
33
35
  ):
34
36
  """
35
37
  Initialize the DynamoDbStorage.
36
38
 
37
39
  Args:
38
40
  table_name (str): The name of the DynamoDB table.
39
- region_name (Optional[str]): AWS region name.
40
41
  profile_name (Optional[str]): AWS profile name to use for credentials.
42
+ region_name (Optional[str]): AWS region name.
41
43
  aws_access_key_id (Optional[str]): AWS access key ID.
42
44
  aws_secret_access_key (Optional[str]): AWS secret access key.
43
45
  endpoint_url (Optional[str]): The complete URL to use for the constructed client.
44
46
  create_table_if_not_exists (bool): Whether to create the table if it does not exist.
45
47
  mode (Optional[Literal["agent", "team", "workflow", "workflow_v2"]]): The mode of the storage.
48
+ create_table_read_capacity_units Optional[int]: Read capacity units for created table (default: 5).
49
+ create_table_write_capacity_units Optional[int]: Write capacity units for created table (default: 5).
46
50
  """
47
51
  super().__init__(mode)
48
52
  self.table_name = table_name
@@ -52,6 +56,8 @@ class DynamoDbStorage(Storage):
52
56
  self.aws_access_key_id = aws_access_key_id
53
57
  self.aws_secret_access_key = aws_secret_access_key
54
58
  self.create_table_if_not_exists = create_table_if_not_exists
59
+ self.create_table_read_capacity_units = create_table_read_capacity_units
60
+ self.create_table_write_capacity_units = create_table_write_capacity_units
55
61
 
56
62
  # Create session using profile name if provided
57
63
  if self.profile_name:
@@ -96,6 +102,11 @@ class DynamoDbStorage(Storage):
96
102
  """
97
103
  Create the DynamoDB table if it does not exist.
98
104
  """
105
+ provisioned_throughput = {
106
+ "ReadCapacityUnits": self.create_table_read_capacity_units,
107
+ "WriteCapacityUnits": self.create_table_write_capacity_units,
108
+ }
109
+
99
110
  try:
100
111
  # Check if table exists
101
112
  self.dynamodb.meta.client.describe_table(TableName=self.table_name)
@@ -141,10 +152,7 @@ class DynamoDbStorage(Storage):
141
152
  {"AttributeName": "created_at", "KeyType": "RANGE"},
142
153
  ],
143
154
  "Projection": {"ProjectionType": "ALL"},
144
- "ProvisionedThroughput": {
145
- "ReadCapacityUnits": 5,
146
- "WriteCapacityUnits": 5,
147
- },
155
+ "ProvisionedThroughput": provisioned_throughput,
148
156
  }
149
157
  ]
150
158
  if self.mode == "agent":
@@ -156,10 +164,7 @@ class DynamoDbStorage(Storage):
156
164
  {"AttributeName": "created_at", "KeyType": "RANGE"},
157
165
  ],
158
166
  "Projection": {"ProjectionType": "ALL"},
159
- "ProvisionedThroughput": {
160
- "ReadCapacityUnits": 5,
161
- "WriteCapacityUnits": 5,
162
- },
167
+ "ProvisionedThroughput": provisioned_throughput,
163
168
  }
164
169
  )
165
170
  elif self.mode == "team":
@@ -171,10 +176,7 @@ class DynamoDbStorage(Storage):
171
176
  {"AttributeName": "created_at", "KeyType": "RANGE"},
172
177
  ],
173
178
  "Projection": {"ProjectionType": "ALL"},
174
- "ProvisionedThroughput": {
175
- "ReadCapacityUnits": 5,
176
- "WriteCapacityUnits": 5,
177
- },
179
+ "ProvisionedThroughput": provisioned_throughput,
178
180
  }
179
181
  )
180
182
  elif self.mode == "workflow":
@@ -186,10 +188,7 @@ class DynamoDbStorage(Storage):
186
188
  {"AttributeName": "created_at", "KeyType": "RANGE"},
187
189
  ],
188
190
  "Projection": {"ProjectionType": "ALL"},
189
- "ProvisionedThroughput": {
190
- "ReadCapacityUnits": 5,
191
- "WriteCapacityUnits": 5,
192
- },
191
+ "ProvisionedThroughput": provisioned_throughput,
193
192
  }
194
193
  )
195
194
  elif self.mode == "workflow_v2":
@@ -201,10 +200,7 @@ class DynamoDbStorage(Storage):
201
200
  {"AttributeName": "created_at", "KeyType": "RANGE"},
202
201
  ],
203
202
  "Projection": {"ProjectionType": "ALL"},
204
- "ProvisionedThroughput": {
205
- "ReadCapacityUnits": 5,
206
- "WriteCapacityUnits": 5,
207
- },
203
+ "ProvisionedThroughput": provisioned_throughput,
208
204
  }
209
205
  )
210
206
  # Create the table
@@ -213,7 +209,7 @@ class DynamoDbStorage(Storage):
213
209
  KeySchema=[{"AttributeName": "session_id", "KeyType": "HASH"}],
214
210
  AttributeDefinitions=attribute_definitions,
215
211
  GlobalSecondaryIndexes=secondary_indexes,
216
- ProvisionedThroughput={"ReadCapacityUnits": 5, "WriteCapacityUnits": 5},
212
+ ProvisionedThroughput=provisioned_throughput,
217
213
  )
218
214
  # Wait until the table exists.
219
215
  self.table.wait_until_exists()