vanna 0.7.9__py3-none-any.whl → 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (302) hide show
  1. vanna/__init__.py +167 -395
  2. vanna/agents/__init__.py +7 -0
  3. vanna/capabilities/__init__.py +17 -0
  4. vanna/capabilities/agent_memory/__init__.py +21 -0
  5. vanna/capabilities/agent_memory/base.py +103 -0
  6. vanna/capabilities/agent_memory/models.py +53 -0
  7. vanna/capabilities/file_system/__init__.py +14 -0
  8. vanna/capabilities/file_system/base.py +71 -0
  9. vanna/capabilities/file_system/models.py +25 -0
  10. vanna/capabilities/sql_runner/__init__.py +13 -0
  11. vanna/capabilities/sql_runner/base.py +37 -0
  12. vanna/capabilities/sql_runner/models.py +13 -0
  13. vanna/components/__init__.py +92 -0
  14. vanna/components/base.py +11 -0
  15. vanna/components/rich/__init__.py +83 -0
  16. vanna/components/rich/containers/__init__.py +7 -0
  17. vanna/components/rich/containers/card.py +20 -0
  18. vanna/components/rich/data/__init__.py +9 -0
  19. vanna/components/rich/data/chart.py +17 -0
  20. vanna/components/rich/data/dataframe.py +93 -0
  21. vanna/components/rich/feedback/__init__.py +21 -0
  22. vanna/components/rich/feedback/badge.py +16 -0
  23. vanna/components/rich/feedback/icon_text.py +14 -0
  24. vanna/components/rich/feedback/log_viewer.py +41 -0
  25. vanna/components/rich/feedback/notification.py +19 -0
  26. vanna/components/rich/feedback/progress.py +37 -0
  27. vanna/components/rich/feedback/status_card.py +28 -0
  28. vanna/components/rich/feedback/status_indicator.py +14 -0
  29. vanna/components/rich/interactive/__init__.py +21 -0
  30. vanna/components/rich/interactive/button.py +95 -0
  31. vanna/components/rich/interactive/task_list.py +58 -0
  32. vanna/components/rich/interactive/ui_state.py +93 -0
  33. vanna/components/rich/specialized/__init__.py +7 -0
  34. vanna/components/rich/specialized/artifact.py +20 -0
  35. vanna/components/rich/text.py +16 -0
  36. vanna/components/simple/__init__.py +15 -0
  37. vanna/components/simple/image.py +15 -0
  38. vanna/components/simple/link.py +15 -0
  39. vanna/components/simple/text.py +11 -0
  40. vanna/core/__init__.py +193 -0
  41. vanna/core/_compat.py +19 -0
  42. vanna/core/agent/__init__.py +10 -0
  43. vanna/core/agent/agent.py +1407 -0
  44. vanna/core/agent/config.py +123 -0
  45. vanna/core/audit/__init__.py +28 -0
  46. vanna/core/audit/base.py +299 -0
  47. vanna/core/audit/models.py +131 -0
  48. vanna/core/component_manager.py +329 -0
  49. vanna/core/components.py +53 -0
  50. vanna/core/enhancer/__init__.py +11 -0
  51. vanna/core/enhancer/base.py +94 -0
  52. vanna/core/enhancer/default.py +118 -0
  53. vanna/core/enricher/__init__.py +10 -0
  54. vanna/core/enricher/base.py +59 -0
  55. vanna/core/errors.py +47 -0
  56. vanna/core/evaluation/__init__.py +81 -0
  57. vanna/core/evaluation/base.py +186 -0
  58. vanna/core/evaluation/dataset.py +254 -0
  59. vanna/core/evaluation/evaluators.py +376 -0
  60. vanna/core/evaluation/report.py +289 -0
  61. vanna/core/evaluation/runner.py +313 -0
  62. vanna/core/filter/__init__.py +10 -0
  63. vanna/core/filter/base.py +67 -0
  64. vanna/core/lifecycle/__init__.py +10 -0
  65. vanna/core/lifecycle/base.py +83 -0
  66. vanna/core/llm/__init__.py +16 -0
  67. vanna/core/llm/base.py +40 -0
  68. vanna/core/llm/models.py +61 -0
  69. vanna/core/middleware/__init__.py +10 -0
  70. vanna/core/middleware/base.py +69 -0
  71. vanna/core/observability/__init__.py +11 -0
  72. vanna/core/observability/base.py +88 -0
  73. vanna/core/observability/models.py +47 -0
  74. vanna/core/recovery/__init__.py +11 -0
  75. vanna/core/recovery/base.py +84 -0
  76. vanna/core/recovery/models.py +32 -0
  77. vanna/core/registry.py +278 -0
  78. vanna/core/rich_component.py +156 -0
  79. vanna/core/simple_component.py +27 -0
  80. vanna/core/storage/__init__.py +14 -0
  81. vanna/core/storage/base.py +46 -0
  82. vanna/core/storage/models.py +46 -0
  83. vanna/core/system_prompt/__init__.py +13 -0
  84. vanna/core/system_prompt/base.py +36 -0
  85. vanna/core/system_prompt/default.py +157 -0
  86. vanna/core/tool/__init__.py +18 -0
  87. vanna/core/tool/base.py +70 -0
  88. vanna/core/tool/models.py +84 -0
  89. vanna/core/user/__init__.py +17 -0
  90. vanna/core/user/base.py +29 -0
  91. vanna/core/user/models.py +25 -0
  92. vanna/core/user/request_context.py +70 -0
  93. vanna/core/user/resolver.py +42 -0
  94. vanna/core/validation.py +164 -0
  95. vanna/core/workflow/__init__.py +12 -0
  96. vanna/core/workflow/base.py +254 -0
  97. vanna/core/workflow/default.py +789 -0
  98. vanna/examples/__init__.py +1 -0
  99. vanna/examples/__main__.py +44 -0
  100. vanna/examples/anthropic_quickstart.py +80 -0
  101. vanna/examples/artifact_example.py +293 -0
  102. vanna/examples/claude_sqlite_example.py +236 -0
  103. vanna/examples/coding_agent_example.py +300 -0
  104. vanna/examples/custom_system_prompt_example.py +174 -0
  105. vanna/examples/default_workflow_handler_example.py +208 -0
  106. vanna/examples/email_auth_example.py +340 -0
  107. vanna/examples/evaluation_example.py +269 -0
  108. vanna/examples/extensibility_example.py +262 -0
  109. vanna/examples/minimal_example.py +67 -0
  110. vanna/examples/mock_auth_example.py +227 -0
  111. vanna/examples/mock_custom_tool.py +311 -0
  112. vanna/examples/mock_quickstart.py +79 -0
  113. vanna/examples/mock_quota_example.py +145 -0
  114. vanna/examples/mock_rich_components_demo.py +396 -0
  115. vanna/examples/mock_sqlite_example.py +223 -0
  116. vanna/examples/openai_quickstart.py +83 -0
  117. vanna/examples/primitive_components_demo.py +305 -0
  118. vanna/examples/quota_lifecycle_example.py +139 -0
  119. vanna/examples/visualization_example.py +251 -0
  120. vanna/integrations/__init__.py +17 -0
  121. vanna/integrations/anthropic/__init__.py +9 -0
  122. vanna/integrations/anthropic/llm.py +270 -0
  123. vanna/integrations/azureopenai/__init__.py +9 -0
  124. vanna/integrations/azureopenai/llm.py +329 -0
  125. vanna/integrations/azuresearch/__init__.py +7 -0
  126. vanna/integrations/azuresearch/agent_memory.py +413 -0
  127. vanna/integrations/bigquery/__init__.py +5 -0
  128. vanna/integrations/bigquery/sql_runner.py +81 -0
  129. vanna/integrations/chromadb/__init__.py +104 -0
  130. vanna/integrations/chromadb/agent_memory.py +416 -0
  131. vanna/integrations/clickhouse/__init__.py +5 -0
  132. vanna/integrations/clickhouse/sql_runner.py +82 -0
  133. vanna/integrations/duckdb/__init__.py +5 -0
  134. vanna/integrations/duckdb/sql_runner.py +65 -0
  135. vanna/integrations/faiss/__init__.py +7 -0
  136. vanna/integrations/faiss/agent_memory.py +431 -0
  137. vanna/integrations/google/__init__.py +9 -0
  138. vanna/integrations/google/gemini.py +370 -0
  139. vanna/integrations/hive/__init__.py +5 -0
  140. vanna/integrations/hive/sql_runner.py +87 -0
  141. vanna/integrations/local/__init__.py +17 -0
  142. vanna/integrations/local/agent_memory/__init__.py +7 -0
  143. vanna/integrations/local/agent_memory/in_memory.py +285 -0
  144. vanna/integrations/local/audit.py +59 -0
  145. vanna/integrations/local/file_system.py +242 -0
  146. vanna/integrations/local/file_system_conversation_store.py +255 -0
  147. vanna/integrations/local/storage.py +62 -0
  148. vanna/integrations/marqo/__init__.py +7 -0
  149. vanna/integrations/marqo/agent_memory.py +354 -0
  150. vanna/integrations/milvus/__init__.py +7 -0
  151. vanna/integrations/milvus/agent_memory.py +458 -0
  152. vanna/integrations/mock/__init__.py +9 -0
  153. vanna/integrations/mock/llm.py +65 -0
  154. vanna/integrations/mssql/__init__.py +5 -0
  155. vanna/integrations/mssql/sql_runner.py +66 -0
  156. vanna/integrations/mysql/__init__.py +5 -0
  157. vanna/integrations/mysql/sql_runner.py +92 -0
  158. vanna/integrations/ollama/__init__.py +7 -0
  159. vanna/integrations/ollama/llm.py +252 -0
  160. vanna/integrations/openai/__init__.py +10 -0
  161. vanna/integrations/openai/llm.py +267 -0
  162. vanna/integrations/openai/responses.py +163 -0
  163. vanna/integrations/opensearch/__init__.py +7 -0
  164. vanna/integrations/opensearch/agent_memory.py +411 -0
  165. vanna/integrations/oracle/__init__.py +5 -0
  166. vanna/integrations/oracle/sql_runner.py +75 -0
  167. vanna/integrations/pinecone/__init__.py +7 -0
  168. vanna/integrations/pinecone/agent_memory.py +329 -0
  169. vanna/integrations/plotly/__init__.py +5 -0
  170. vanna/integrations/plotly/chart_generator.py +313 -0
  171. vanna/integrations/postgres/__init__.py +9 -0
  172. vanna/integrations/postgres/sql_runner.py +112 -0
  173. vanna/integrations/premium/agent_memory/__init__.py +7 -0
  174. vanna/integrations/premium/agent_memory/premium.py +186 -0
  175. vanna/integrations/presto/__init__.py +5 -0
  176. vanna/integrations/presto/sql_runner.py +107 -0
  177. vanna/integrations/qdrant/__init__.py +7 -0
  178. vanna/integrations/qdrant/agent_memory.py +461 -0
  179. vanna/integrations/snowflake/__init__.py +5 -0
  180. vanna/integrations/snowflake/sql_runner.py +147 -0
  181. vanna/integrations/sqlite/__init__.py +9 -0
  182. vanna/integrations/sqlite/sql_runner.py +65 -0
  183. vanna/integrations/weaviate/__init__.py +7 -0
  184. vanna/integrations/weaviate/agent_memory.py +428 -0
  185. vanna/{ZhipuAI → legacy/ZhipuAI}/ZhipuAI_embeddings.py +11 -11
  186. vanna/legacy/__init__.py +403 -0
  187. vanna/legacy/adapter.py +463 -0
  188. vanna/{advanced → legacy/advanced}/__init__.py +3 -1
  189. vanna/{anthropic → legacy/anthropic}/anthropic_chat.py +9 -7
  190. vanna/{azuresearch → legacy/azuresearch}/azuresearch_vector.py +79 -41
  191. vanna/{base → legacy/base}/base.py +224 -217
  192. vanna/legacy/bedrock/__init__.py +1 -0
  193. vanna/{bedrock → legacy/bedrock}/bedrock_converse.py +13 -12
  194. vanna/{chromadb → legacy/chromadb}/chromadb_vector.py +3 -1
  195. vanna/legacy/cohere/__init__.py +2 -0
  196. vanna/{cohere → legacy/cohere}/cohere_chat.py +19 -14
  197. vanna/{cohere → legacy/cohere}/cohere_embeddings.py +25 -19
  198. vanna/{deepseek → legacy/deepseek}/deepseek_chat.py +5 -6
  199. vanna/legacy/faiss/__init__.py +1 -0
  200. vanna/{faiss → legacy/faiss}/faiss.py +113 -59
  201. vanna/{flask → legacy/flask}/__init__.py +84 -43
  202. vanna/{flask → legacy/flask}/assets.py +5 -5
  203. vanna/{flask → legacy/flask}/auth.py +5 -4
  204. vanna/{google → legacy/google}/bigquery_vector.py +75 -42
  205. vanna/{google → legacy/google}/gemini_chat.py +7 -3
  206. vanna/{hf → legacy/hf}/hf.py +0 -1
  207. vanna/{milvus → legacy/milvus}/milvus_vector.py +58 -35
  208. vanna/{mock → legacy/mock}/llm.py +0 -1
  209. vanna/legacy/mock/vectordb.py +67 -0
  210. vanna/legacy/ollama/ollama.py +110 -0
  211. vanna/{openai → legacy/openai}/openai_chat.py +2 -6
  212. vanna/legacy/opensearch/opensearch_vector.py +369 -0
  213. vanna/legacy/opensearch/opensearch_vector_semantic.py +200 -0
  214. vanna/legacy/oracle/oracle_vector.py +584 -0
  215. vanna/{pgvector → legacy/pgvector}/pgvector.py +42 -13
  216. vanna/{qdrant → legacy/qdrant}/qdrant.py +2 -6
  217. vanna/legacy/qianfan/Qianfan_Chat.py +170 -0
  218. vanna/legacy/qianfan/Qianfan_embeddings.py +36 -0
  219. vanna/legacy/qianwen/QianwenAI_chat.py +132 -0
  220. vanna/{remote.py → legacy/remote.py} +28 -26
  221. vanna/{utils.py → legacy/utils.py} +6 -11
  222. vanna/{vannadb → legacy/vannadb}/vannadb_vector.py +115 -46
  223. vanna/{vllm → legacy/vllm}/vllm.py +5 -6
  224. vanna/{weaviate → legacy/weaviate}/weaviate_vector.py +59 -40
  225. vanna/{xinference → legacy/xinference}/xinference.py +6 -6
  226. vanna/py.typed +0 -0
  227. vanna/servers/__init__.py +16 -0
  228. vanna/servers/__main__.py +8 -0
  229. vanna/servers/base/__init__.py +18 -0
  230. vanna/servers/base/chat_handler.py +65 -0
  231. vanna/servers/base/models.py +111 -0
  232. vanna/servers/base/rich_chat_handler.py +141 -0
  233. vanna/servers/base/templates.py +331 -0
  234. vanna/servers/cli/__init__.py +7 -0
  235. vanna/servers/cli/server_runner.py +204 -0
  236. vanna/servers/fastapi/__init__.py +7 -0
  237. vanna/servers/fastapi/app.py +163 -0
  238. vanna/servers/fastapi/routes.py +183 -0
  239. vanna/servers/flask/__init__.py +7 -0
  240. vanna/servers/flask/app.py +132 -0
  241. vanna/servers/flask/routes.py +137 -0
  242. vanna/tools/__init__.py +41 -0
  243. vanna/tools/agent_memory.py +322 -0
  244. vanna/tools/file_system.py +879 -0
  245. vanna/tools/python.py +222 -0
  246. vanna/tools/run_sql.py +165 -0
  247. vanna/tools/visualize_data.py +195 -0
  248. vanna/utils/__init__.py +0 -0
  249. vanna/web_components/__init__.py +44 -0
  250. vanna-2.0.0.dist-info/METADATA +485 -0
  251. vanna-2.0.0.dist-info/RECORD +289 -0
  252. vanna-2.0.0.dist-info/entry_points.txt +3 -0
  253. vanna/bedrock/__init__.py +0 -1
  254. vanna/cohere/__init__.py +0 -2
  255. vanna/faiss/__init__.py +0 -1
  256. vanna/mock/vectordb.py +0 -55
  257. vanna/ollama/ollama.py +0 -103
  258. vanna/opensearch/opensearch_vector.py +0 -392
  259. vanna/opensearch/opensearch_vector_semantic.py +0 -175
  260. vanna/oracle/oracle_vector.py +0 -585
  261. vanna/qianfan/Qianfan_Chat.py +0 -165
  262. vanna/qianfan/Qianfan_embeddings.py +0 -36
  263. vanna/qianwen/QianwenAI_chat.py +0 -133
  264. vanna-0.7.9.dist-info/METADATA +0 -408
  265. vanna-0.7.9.dist-info/RECORD +0 -79
  266. /vanna/{ZhipuAI → legacy/ZhipuAI}/ZhipuAI_Chat.py +0 -0
  267. /vanna/{ZhipuAI → legacy/ZhipuAI}/__init__.py +0 -0
  268. /vanna/{anthropic → legacy/anthropic}/__init__.py +0 -0
  269. /vanna/{azuresearch → legacy/azuresearch}/__init__.py +0 -0
  270. /vanna/{base → legacy/base}/__init__.py +0 -0
  271. /vanna/{chromadb → legacy/chromadb}/__init__.py +0 -0
  272. /vanna/{deepseek → legacy/deepseek}/__init__.py +0 -0
  273. /vanna/{exceptions → legacy/exceptions}/__init__.py +0 -0
  274. /vanna/{google → legacy/google}/__init__.py +0 -0
  275. /vanna/{hf → legacy/hf}/__init__.py +0 -0
  276. /vanna/{local.py → legacy/local.py} +0 -0
  277. /vanna/{marqo → legacy/marqo}/__init__.py +0 -0
  278. /vanna/{marqo → legacy/marqo}/marqo.py +0 -0
  279. /vanna/{milvus → legacy/milvus}/__init__.py +0 -0
  280. /vanna/{mistral → legacy/mistral}/__init__.py +0 -0
  281. /vanna/{mistral → legacy/mistral}/mistral.py +0 -0
  282. /vanna/{mock → legacy/mock}/__init__.py +0 -0
  283. /vanna/{mock → legacy/mock}/embedding.py +0 -0
  284. /vanna/{ollama → legacy/ollama}/__init__.py +0 -0
  285. /vanna/{openai → legacy/openai}/__init__.py +0 -0
  286. /vanna/{openai → legacy/openai}/openai_embeddings.py +0 -0
  287. /vanna/{opensearch → legacy/opensearch}/__init__.py +0 -0
  288. /vanna/{oracle → legacy/oracle}/__init__.py +0 -0
  289. /vanna/{pgvector → legacy/pgvector}/__init__.py +0 -0
  290. /vanna/{pinecone → legacy/pinecone}/__init__.py +0 -0
  291. /vanna/{pinecone → legacy/pinecone}/pinecone_vector.py +0 -0
  292. /vanna/{qdrant → legacy/qdrant}/__init__.py +0 -0
  293. /vanna/{qianfan → legacy/qianfan}/__init__.py +0 -0
  294. /vanna/{qianwen → legacy/qianwen}/QianwenAI_embeddings.py +0 -0
  295. /vanna/{qianwen → legacy/qianwen}/__init__.py +0 -0
  296. /vanna/{types → legacy/types}/__init__.py +0 -0
  297. /vanna/{vannadb → legacy/vannadb}/__init__.py +0 -0
  298. /vanna/{vllm → legacy/vllm}/__init__.py +0 -0
  299. /vanna/{weaviate → legacy/weaviate}/__init__.py +0 -0
  300. /vanna/{xinference → legacy/xinference}/__init__.py +0 -0
  301. {vanna-0.7.9.dist-info → vanna-2.0.0.dist-info}/WHEEL +0 -0
  302. {vanna-0.7.9.dist-info → vanna-2.0.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,408 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: vanna
3
- Version: 0.7.9
4
- Summary: Generate SQL queries from natural language
5
- Author-email: Zain Hoda <zain@vanna.ai>
6
- Requires-Python: >=3.9
7
- Description-Content-Type: text/markdown
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- License-File: LICENSE
12
- Requires-Dist: requests
13
- Requires-Dist: tabulate
14
- Requires-Dist: plotly
15
- Requires-Dist: pandas
16
- Requires-Dist: sqlparse
17
- Requires-Dist: kaleido
18
- Requires-Dist: flask
19
- Requires-Dist: flask-sock
20
- Requires-Dist: flasgger
21
- Requires-Dist: sqlalchemy
22
- Requires-Dist: psycopg2-binary ; extra == "all"
23
- Requires-Dist: db-dtypes ; extra == "all"
24
- Requires-Dist: PyMySQL ; extra == "all"
25
- Requires-Dist: google-cloud-bigquery ; extra == "all"
26
- Requires-Dist: snowflake-connector-python ; extra == "all"
27
- Requires-Dist: duckdb ; extra == "all"
28
- Requires-Dist: openai ; extra == "all"
29
- Requires-Dist: qianfan ; extra == "all"
30
- Requires-Dist: mistralai>=1.0.0 ; extra == "all"
31
- Requires-Dist: chromadb<1.0.0 ; extra == "all"
32
- Requires-Dist: anthropic ; extra == "all"
33
- Requires-Dist: zhipuai ; extra == "all"
34
- Requires-Dist: marqo ; extra == "all"
35
- Requires-Dist: google-generativeai ; extra == "all"
36
- Requires-Dist: google-cloud-aiplatform ; extra == "all"
37
- Requires-Dist: qdrant-client ; extra == "all"
38
- Requires-Dist: fastembed ; extra == "all"
39
- Requires-Dist: ollama ; extra == "all"
40
- Requires-Dist: httpx ; extra == "all"
41
- Requires-Dist: opensearch-py ; extra == "all"
42
- Requires-Dist: opensearch-dsl ; extra == "all"
43
- Requires-Dist: transformers ; extra == "all"
44
- Requires-Dist: pinecone ; extra == "all"
45
- Requires-Dist: pymilvus[model] ; extra == "all"
46
- Requires-Dist: weaviate-client ; extra == "all"
47
- Requires-Dist: azure-search-documents ; extra == "all"
48
- Requires-Dist: azure-identity ; extra == "all"
49
- Requires-Dist: azure-common ; extra == "all"
50
- Requires-Dist: faiss-cpu ; extra == "all"
51
- Requires-Dist: boto ; extra == "all"
52
- Requires-Dist: boto3 ; extra == "all"
53
- Requires-Dist: botocore ; extra == "all"
54
- Requires-Dist: langchain_core ; extra == "all"
55
- Requires-Dist: langchain_postgres ; extra == "all"
56
- Requires-Dist: langchain-community ; extra == "all"
57
- Requires-Dist: langchain-huggingface ; extra == "all"
58
- Requires-Dist: xinference-client ; extra == "all"
59
- Requires-Dist: anthropic ; extra == "anthropic"
60
- Requires-Dist: azure-search-documents ; extra == "azuresearch"
61
- Requires-Dist: azure-identity ; extra == "azuresearch"
62
- Requires-Dist: azure-common ; extra == "azuresearch"
63
- Requires-Dist: fastembed ; extra == "azuresearch"
64
- Requires-Dist: boto3 ; extra == "bedrock"
65
- Requires-Dist: botocore ; extra == "bedrock"
66
- Requires-Dist: google-cloud-bigquery ; extra == "bigquery"
67
- Requires-Dist: chromadb<1.0.0 ; extra == "chromadb"
68
- Requires-Dist: clickhouse_connect ; extra == "clickhouse"
69
- Requires-Dist: duckdb ; extra == "duckdb"
70
- Requires-Dist: faiss-cpu ; extra == "faiss-cpu"
71
- Requires-Dist: faiss-gpu ; extra == "faiss-gpu"
72
- Requires-Dist: google-generativeai ; extra == "gemini"
73
- Requires-Dist: google-generativeai ; extra == "google"
74
- Requires-Dist: google-cloud-aiplatform ; extra == "google"
75
- Requires-Dist: transformers ; extra == "hf"
76
- Requires-Dist: marqo ; extra == "marqo"
77
- Requires-Dist: pymilvus[model] ; extra == "milvus"
78
- Requires-Dist: mistralai>=1.0.0 ; extra == "mistralai"
79
- Requires-Dist: PyMySQL ; extra == "mysql"
80
- Requires-Dist: ollama ; extra == "ollama"
81
- Requires-Dist: httpx ; extra == "ollama"
82
- Requires-Dist: openai ; extra == "openai"
83
- Requires-Dist: opensearch-py ; extra == "opensearch"
84
- Requires-Dist: opensearch-dsl ; extra == "opensearch"
85
- Requires-Dist: langchain-community ; extra == "opensearch"
86
- Requires-Dist: langchain-huggingface ; extra == "opensearch"
87
- Requires-Dist: oracledb ; extra == "oracle"
88
- Requires-Dist: chromadb<1.0.0 ; extra == "oracle"
89
- Requires-Dist: langchain-postgres>=0.0.12 ; extra == "pgvector"
90
- Requires-Dist: pinecone ; extra == "pinecone"
91
- Requires-Dist: fastembed ; extra == "pinecone"
92
- Requires-Dist: psycopg2-binary ; extra == "postgres"
93
- Requires-Dist: db-dtypes ; extra == "postgres"
94
- Requires-Dist: qdrant-client ; extra == "qdrant"
95
- Requires-Dist: fastembed ; extra == "qdrant"
96
- Requires-Dist: qianfan ; extra == "qianfan"
97
- Requires-Dist: snowflake-connector-python ; extra == "snowflake"
98
- Requires-Dist: tox ; extra == "test"
99
- Requires-Dist: vllm ; extra == "vllm"
100
- Requires-Dist: weaviate-client ; extra == "weaviate"
101
- Requires-Dist: xinference-client ; extra == "xinference-client"
102
- Requires-Dist: zhipuai ; extra == "zhipuai"
103
- Project-URL: Bug Tracker, https://github.com/vanna-ai/vanna/issues
104
- Project-URL: Homepage, https://github.com/vanna-ai/vanna
105
- Provides-Extra: all
106
- Provides-Extra: anthropic
107
- Provides-Extra: azuresearch
108
- Provides-Extra: bedrock
109
- Provides-Extra: bigquery
110
- Provides-Extra: chromadb
111
- Provides-Extra: clickhouse
112
- Provides-Extra: duckdb
113
- Provides-Extra: faiss-cpu
114
- Provides-Extra: faiss-gpu
115
- Provides-Extra: gemini
116
- Provides-Extra: google
117
- Provides-Extra: hf
118
- Provides-Extra: marqo
119
- Provides-Extra: milvus
120
- Provides-Extra: mistralai
121
- Provides-Extra: mysql
122
- Provides-Extra: ollama
123
- Provides-Extra: openai
124
- Provides-Extra: opensearch
125
- Provides-Extra: oracle
126
- Provides-Extra: pgvector
127
- Provides-Extra: pinecone
128
- Provides-Extra: postgres
129
- Provides-Extra: qdrant
130
- Provides-Extra: qianfan
131
- Provides-Extra: snowflake
132
- Provides-Extra: test
133
- Provides-Extra: vllm
134
- Provides-Extra: weaviate
135
- Provides-Extra: xinference-client
136
- Provides-Extra: zhipuai
137
-
138
-
139
-
140
- | GitHub | PyPI | Documentation | Gurubase |
141
- | ------ | ---- | ------------- | -------- |
142
- | [![GitHub](https://img.shields.io/badge/GitHub-vanna-blue?logo=github)](https://github.com/vanna-ai/vanna) | [![PyPI](https://img.shields.io/pypi/v/vanna?logo=pypi)](https://pypi.org/project/vanna/) | [![Documentation](https://img.shields.io/badge/Documentation-vanna-blue?logo=read-the-docs)](https://vanna.ai/docs/) | [![Gurubase](https://img.shields.io/badge/Gurubase-Ask%20Vanna%20Guru-006BFF)](https://gurubase.io/g/vanna) |
143
-
144
- # Vanna
145
- Vanna is an MIT-licensed open-source Python RAG (Retrieval-Augmented Generation) framework for SQL generation and related functionality.
146
-
147
- https://github.com/vanna-ai/vanna/assets/7146154/1901f47a-515d-4982-af50-f12761a3b2ce
148
-
149
- ![vanna-quadrants](https://github.com/vanna-ai/vanna/assets/7146154/1c7c88ba-c144-4ecf-a028-cf5ba7344ca2)
150
-
151
- ## How Vanna works
152
-
153
- ![Screen Recording 2024-01-24 at 11 21 37 AM](https://github.com/vanna-ai/vanna/assets/7146154/1d2718ad-12a8-4a76-afa2-c61754462f93)
154
-
155
-
156
- Vanna works in two easy steps - train a RAG "model" on your data, and then ask questions which will return SQL queries that can be set up to automatically run on your database.
157
-
158
- 1. **Train a RAG "model" on your data**.
159
- 2. **Ask questions**.
160
-
161
- ![](img/vanna-readme-diagram.png)
162
-
163
- If you don't know what RAG is, don't worry -- you don't need to know how this works under the hood to use it. You just need to know that you "train" a model, which stores some metadata and then use it to "ask" questions.
164
-
165
- See the [base class](https://github.com/vanna-ai/vanna/blob/main/src/vanna/base/base.py) for more details on how this works under the hood.
166
-
167
- ## User Interfaces
168
- These are some of the user interfaces that we've built using Vanna. You can use these as-is or as a starting point for your own custom interface.
169
-
170
- - [Jupyter Notebook](https://vanna.ai/docs/postgres-openai-vanna-vannadb/)
171
- - [vanna-ai/vanna-streamlit](https://github.com/vanna-ai/vanna-streamlit)
172
- - [vanna-ai/vanna-flask](https://github.com/vanna-ai/vanna-flask)
173
- - [vanna-ai/vanna-slack](https://github.com/vanna-ai/vanna-slack)
174
-
175
- ## Supported LLMs
176
-
177
- - [OpenAI](https://github.com/vanna-ai/vanna/tree/main/src/vanna/openai)
178
- - [Anthropic](https://github.com/vanna-ai/vanna/tree/main/src/vanna/anthropic)
179
- - [Gemini](https://github.com/vanna-ai/vanna/blob/main/src/vanna/google/gemini_chat.py)
180
- - [HuggingFace](https://github.com/vanna-ai/vanna/blob/main/src/vanna/hf/hf.py)
181
- - [AWS Bedrock](https://github.com/vanna-ai/vanna/tree/main/src/vanna/bedrock)
182
- - [Ollama](https://github.com/vanna-ai/vanna/tree/main/src/vanna/ollama)
183
- - [Qianwen](https://github.com/vanna-ai/vanna/tree/main/src/vanna/qianwen)
184
- - [Qianfan](https://github.com/vanna-ai/vanna/tree/main/src/vanna/qianfan)
185
- - [Zhipu](https://github.com/vanna-ai/vanna/tree/main/src/vanna/ZhipuAI)
186
-
187
- ## Supported VectorStores
188
-
189
- - [AzureSearch](https://github.com/vanna-ai/vanna/tree/main/src/vanna/azuresearch)
190
- - [Opensearch](https://github.com/vanna-ai/vanna/tree/main/src/vanna/opensearch)
191
- - [PgVector](https://github.com/vanna-ai/vanna/tree/main/src/vanna/pgvector)
192
- - [PineCone](https://github.com/vanna-ai/vanna/tree/main/src/vanna/pinecone)
193
- - [ChromaDB](https://github.com/vanna-ai/vanna/tree/main/src/vanna/chromadb)
194
- - [FAISS](https://github.com/vanna-ai/vanna/tree/main/src/vanna/faiss)
195
- - [Marqo](https://github.com/vanna-ai/vanna/tree/main/src/vanna/marqo)
196
- - [Milvus](https://github.com/vanna-ai/vanna/tree/main/src/vanna/milvus)
197
- - [Qdrant](https://github.com/vanna-ai/vanna/tree/main/src/vanna/qdrant)
198
- - [Weaviate](https://github.com/vanna-ai/vanna/tree/main/src/vanna/weaviate)
199
- - [Oracle](https://github.com/vanna-ai/vanna/tree/main/src/vanna/oracle)
200
-
201
- ## Supported Databases
202
-
203
- - [PostgreSQL](https://www.postgresql.org/)
204
- - [MySQL](https://www.mysql.com/)
205
- - [PrestoDB](https://prestodb.io/)
206
- - [Apache Hive](https://hive.apache.org/)
207
- - [ClickHouse](https://clickhouse.com/)
208
- - [Snowflake](https://www.snowflake.com/en/)
209
- - [Oracle](https://www.oracle.com/)
210
- - [Microsoft SQL Server](https://www.microsoft.com/en-us/sql-server/sql-server-downloads)
211
- - [BigQuery](https://cloud.google.com/bigquery)
212
- - [SQLite](https://www.sqlite.org/)
213
- - [DuckDB](https://duckdb.org/)
214
-
215
-
216
- ## Getting started
217
- See the [documentation](https://vanna.ai/docs/) for specifics on your desired database, LLM, etc.
218
-
219
- If you want to get a feel for how it works after training, you can try this [Colab notebook](https://vanna.ai/docs/app/).
220
-
221
-
222
- ### Install
223
- ```bash
224
- pip install vanna
225
- ```
226
-
227
- There are a number of optional packages that can be installed so see the [documentation](https://vanna.ai/docs/) for more details.
228
-
229
- ### Import
230
- See the [documentation](https://vanna.ai/docs/) if you're customizing the LLM or vector database.
231
-
232
- ```python
233
- # The import statement will vary depending on your LLM and vector database. This is an example for OpenAI + ChromaDB
234
-
235
- from vanna.openai.openai_chat import OpenAI_Chat
236
- from vanna.chromadb.chromadb_vector import ChromaDB_VectorStore
237
-
238
- class MyVanna(ChromaDB_VectorStore, OpenAI_Chat):
239
- def __init__(self, config=None):
240
- ChromaDB_VectorStore.__init__(self, config=config)
241
- OpenAI_Chat.__init__(self, config=config)
242
-
243
- vn = MyVanna(config={'api_key': 'sk-...', 'model': 'gpt-4-...'})
244
-
245
- # See the documentation for other options
246
-
247
- ```
248
-
249
-
250
- ## Training
251
- You may or may not need to run these `vn.train` commands depending on your use case. See the [documentation](https://vanna.ai/docs/) for more details.
252
-
253
- These statements are shown to give you a feel for how it works.
254
-
255
- ### Train with DDL Statements
256
- DDL statements contain information about the table names, columns, data types, and relationships in your database.
257
-
258
- ```python
259
- vn.train(ddl="""
260
- CREATE TABLE IF NOT EXISTS my-table (
261
- id INT PRIMARY KEY,
262
- name VARCHAR(100),
263
- age INT
264
- )
265
- """)
266
- ```
267
-
268
- ### Train with Documentation
269
- Sometimes you may want to add documentation about your business terminology or definitions.
270
-
271
- ```python
272
- vn.train(documentation="Our business defines XYZ as ...")
273
- ```
274
-
275
- ### Train with SQL
276
- You can also add SQL queries to your training data. This is useful if you have some queries already laying around. You can just copy and paste those from your editor to begin generating new SQL.
277
-
278
- ```python
279
- vn.train(sql="SELECT name, age FROM my-table WHERE name = 'John Doe'")
280
- ```
281
-
282
-
283
- ## Asking questions
284
- ```python
285
- vn.ask("What are the top 10 customers by sales?")
286
- ```
287
-
288
- You'll get SQL
289
- ```sql
290
- SELECT c.c_name as customer_name,
291
- sum(l.l_extendedprice * (1 - l.l_discount)) as total_sales
292
- FROM snowflake_sample_data.tpch_sf1.lineitem l join snowflake_sample_data.tpch_sf1.orders o
293
- ON l.l_orderkey = o.o_orderkey join snowflake_sample_data.tpch_sf1.customer c
294
- ON o.o_custkey = c.c_custkey
295
- GROUP BY customer_name
296
- ORDER BY total_sales desc limit 10;
297
- ```
298
-
299
- If you've connected to a database, you'll get the table:
300
- <div>
301
- <table border="1" class="dataframe">
302
- <thead>
303
- <tr style="text-align: right;">
304
- <th></th>
305
- <th>CUSTOMER_NAME</th>
306
- <th>TOTAL_SALES</th>
307
- </tr>
308
- </thead>
309
- <tbody>
310
- <tr>
311
- <th>0</th>
312
- <td>Customer#000143500</td>
313
- <td>6757566.0218</td>
314
- </tr>
315
- <tr>
316
- <th>1</th>
317
- <td>Customer#000095257</td>
318
- <td>6294115.3340</td>
319
- </tr>
320
- <tr>
321
- <th>2</th>
322
- <td>Customer#000087115</td>
323
- <td>6184649.5176</td>
324
- </tr>
325
- <tr>
326
- <th>3</th>
327
- <td>Customer#000131113</td>
328
- <td>6080943.8305</td>
329
- </tr>
330
- <tr>
331
- <th>4</th>
332
- <td>Customer#000134380</td>
333
- <td>6075141.9635</td>
334
- </tr>
335
- <tr>
336
- <th>5</th>
337
- <td>Customer#000103834</td>
338
- <td>6059770.3232</td>
339
- </tr>
340
- <tr>
341
- <th>6</th>
342
- <td>Customer#000069682</td>
343
- <td>6057779.0348</td>
344
- </tr>
345
- <tr>
346
- <th>7</th>
347
- <td>Customer#000102022</td>
348
- <td>6039653.6335</td>
349
- </tr>
350
- <tr>
351
- <th>8</th>
352
- <td>Customer#000098587</td>
353
- <td>6027021.5855</td>
354
- </tr>
355
- <tr>
356
- <th>9</th>
357
- <td>Customer#000064660</td>
358
- <td>5905659.6159</td>
359
- </tr>
360
- </tbody>
361
- </table>
362
- </div>
363
-
364
- You'll also get an automated Plotly chart:
365
- ![](img/top-10-customers.png)
366
-
367
- ## RAG vs. Fine-Tuning
368
- RAG
369
- - Portable across LLMs
370
- - Easy to remove training data if any of it becomes obsolete
371
- - Much cheaper to run than fine-tuning
372
- - More future-proof -- if a better LLM comes out, you can just swap it out
373
-
374
- Fine-Tuning
375
- - Good if you need to minimize tokens in the prompt
376
- - Slow to get started
377
- - Expensive to train and run (generally)
378
-
379
- ## Why Vanna?
380
-
381
- 1. **High accuracy on complex datasets.**
382
- - Vanna’s capabilities are tied to the training data you give it
383
- - More training data means better accuracy for large and complex datasets
384
- 2. **Secure and private.**
385
- - Your database contents are never sent to the LLM or the vector database
386
- - SQL execution happens in your local environment
387
- 3. **Self learning.**
388
- - If using via Jupyter, you can choose to "auto-train" it on the queries that were successfully executed
389
- - If using via other interfaces, you can have the interface prompt the user to provide feedback on the results
390
- - Correct question to SQL pairs are stored for future reference and make the future results more accurate
391
- 4. **Supports any SQL database.**
392
- - The package allows you to connect to any SQL database that you can otherwise connect to with Python
393
- 5. **Choose your front end.**
394
- - Most people start in a Jupyter Notebook.
395
- - Expose to your end users via Slackbot, web app, Streamlit app, or a custom front end.
396
-
397
- ## Extending Vanna
398
- Vanna is designed to connect to any database, LLM, and vector database. There's a [VannaBase](https://github.com/vanna-ai/vanna/blob/main/src/vanna/base/base.py) abstract base class that defines some basic functionality. The package provides implementations for use with OpenAI and ChromaDB. You can easily extend Vanna to use your own LLM or vector database. See the [documentation](https://vanna.ai/docs/) for more details.
399
-
400
- ## Vanna in 100 Seconds
401
-
402
- https://github.com/vanna-ai/vanna/assets/7146154/eb90ee1e-aa05-4740-891a-4fc10e611cab
403
-
404
- ## More resources
405
- - [Full Documentation](https://vanna.ai/docs/)
406
- - [Website](https://vanna.ai)
407
- - [Discord group for support](https://discord.gg/qUZYKHremx)
408
-
@@ -1,79 +0,0 @@
1
- vanna/__init__.py,sha256=4zz2kSkVZenjwJQg-ETWsIVYdz3gio275i9DMa_aHxM,9248
2
- vanna/local.py,sha256=U5s8ybCRQhBUizi8I69o3jqOpTeu_6KGYY6DMwZxjG4,313
3
- vanna/remote.py,sha256=3SGyXBmNWofkZL3vGevypvMAhqAYru0KzoUCpX2N6Vc,1876
4
- vanna/utils.py,sha256=cs0B_0MwhmPI2nWjVHifDYCmCR0kkddylQ2vloaPDSw,2247
5
- vanna/ZhipuAI/ZhipuAI_Chat.py,sha256=WtZKUBIwlNH0BGbb4lZbVR7pTWIrn7b4RLIk-7u0SuQ,8725
6
- vanna/ZhipuAI/ZhipuAI_embeddings.py,sha256=lUqzJg9fOx7rVFhjdkFjXcDeVGV4aAB5Ss0oERsa8pE,2849
7
- vanna/ZhipuAI/__init__.py,sha256=NlsijtcZp5Tj9jkOe9fNcOQND_QsGgu7otODsCLBPr0,116
8
- vanna/advanced/__init__.py,sha256=oDj9g1JbrbCfp4WWdlr_bhgdMqNleyHgr6VXX6DcEbo,658
9
- vanna/anthropic/__init__.py,sha256=85s_2mAyyPxc0T_0JEvYeAkEKWJwkwqoyUwSC5dw9Gk,43
10
- vanna/anthropic/anthropic_chat.py,sha256=7X3x8SYwDY28aGyBnt0YNRMG8YY1p_t-foMfKGj8_Oo,2627
11
- vanna/azuresearch/__init__.py,sha256=tZfvsrCJESiL3EnxA4PrOc5NoO8MXEzCfHX_hnj8n-c,58
12
- vanna/azuresearch/azuresearch_vector.py,sha256=_-t53PUnJM914GYbTYlyee06ocfu7l2NkZerBQtlJcs,9566
13
- vanna/base/__init__.py,sha256=Sl-HM1RRYzAZoSqmL1CZQmF3ZF-byYTCFQP3JZ2A5MU,28
14
- vanna/base/base.py,sha256=HKb6j1jhJmJ8h5fe0t7h-KEVn_5lDg1mA3W2dqViuw8,74240
15
- vanna/bedrock/__init__.py,sha256=hRT2bgJbHEqViLdL-t9hfjSfFdIOkPU2ADBt-B1En-8,46
16
- vanna/bedrock/bedrock_converse.py,sha256=Nx5kYm-diAfYmsWAnTP5xnv7V84Og69-AP9b3seIe0E,2869
17
- vanna/chromadb/__init__.py,sha256=-iL0nW_g4uM8nWKMuWnNePfN4nb9uk8P3WzGvezOqRg,50
18
- vanna/chromadb/chromadb_vector.py,sha256=eKyPck99Y6Jt-BNWojvxLG-zvAERzLSm-3zY-bKXvaA,8792
19
- vanna/cohere/__init__.py,sha256=QqNQXEixwkrQ4MIAadmg8hTrWDCHFzZoOMF9tim9Pw0,86
20
- vanna/cohere/cohere_chat.py,sha256=f7kmhhkqoy61AGkBJBXBjVQ2AQkmLQkYnRGNTiZpfYw,3572
21
- vanna/cohere/cohere_embeddings.py,sha256=RsbZLPVVFIqxbN4t05YM8sc7X0gmA455dhpdU9iB6x8,2646
22
- vanna/deepseek/__init__.py,sha256=7SVY3DGJcNH7GTk7Uq922QM8yZKu3-5IO33WQ_-bgCM,40
23
- vanna/deepseek/deepseek_chat.py,sha256=dbTIfVSNmPKYJVI8YeJu3a2Du8U6VqDHdT0gOeqISTc,1878
24
- vanna/exceptions/__init__.py,sha256=dJ65xxxZh1lqBeg6nz6Tq_r34jLVmjvBvPO9Q6hFaQ8,685
25
- vanna/faiss/__init__.py,sha256=MXuojmLPt4kUtkES9XKWJcCDHVa4L5a6YF5gebhmKLw,24
26
- vanna/faiss/faiss.py,sha256=HLUO5PQdnJio9OXJiJcgmRuxVWXvg_XRBnnohS21Z0w,8304
27
- vanna/flask/__init__.py,sha256=jcdaau1tQ142nL1ZsDklk0ilMkEyRxgQZdmsl1IN4LQ,43866
28
- vanna/flask/assets.py,sha256=af-vact_5HSftltugBpPxzLkAI14Z0lVWcObyVe6eKE,453462
29
- vanna/flask/auth.py,sha256=UpKxh7W5cd43W0LGch0VqhncKwB78L6dtOQkl1JY5T0,1246
30
- vanna/google/__init__.py,sha256=6D8rDBjKJJm_jpVn9b4Vc2NR-R779ed_bnHhWmxCJXE,92
31
- vanna/google/bigquery_vector.py,sha256=mHggjvCsWMt4HK6Y4dAZUPgHi1uytxp2AEQ696TSsJA,9315
32
- vanna/google/gemini_chat.py,sha256=Tm4S0uywQNuZ5y0eQsE0-rv0NkAw_IhlyMiQqiqn8ro,2683
33
- vanna/hf/__init__.py,sha256=vD0bIhfLkA1UsvVSF4MAz3Da8aQunkQo3wlDztmMuj0,19
34
- vanna/hf/hf.py,sha256=N8N5g3xvKDBt3dez2r_U0qATxbl2pN8SVLTZK9CSRA0,3020
35
- vanna/marqo/__init__.py,sha256=GaAWtJ0B-H5rTY607iLCCrLD7T0zMYM5qWIomEB9gLk,37
36
- vanna/marqo/marqo.py,sha256=W7WTtzWp4RJjZVy6OaXHqncUBIPdI4Q7qH7BRCxZ1_A,5242
37
- vanna/milvus/__init__.py,sha256=VBasJG2eTKbJI6CEand7kPLNBrqYrn0QCAhSYVz814s,46
38
- vanna/milvus/milvus_vector.py,sha256=Mq0eaSh0UcTYhgh8mTm0fvS6rbfL6tQONVnDZGemWoM,11268
39
- vanna/mistral/__init__.py,sha256=70rTY-69Z2ehkkMj84dNMCukPo6AWdflBGvIB_pztS0,29
40
- vanna/mistral/mistral.py,sha256=rcdgmUSQniLkah2VL23VGYRa9WXpOy_dZN4S0kc__V8,1494
41
- vanna/mock/__init__.py,sha256=nYR2WfcV5NdwpK3V64QGOWHBGc3ESN9uV68JLS76aRw,97
42
- vanna/mock/embedding.py,sha256=ggnP7KuPh6dlqeUFtoN8t0J0P7_yRNtn9rIq6h8g8-w,250
43
- vanna/mock/llm.py,sha256=WpG9f1pKZftPBHqgIYdARKB2Z9DZhOALYOJWoOjjFEc,518
44
- vanna/mock/vectordb.py,sha256=h45znfYMUnttE2BBC8v6TKeMaA58pFJL-5B3OGeRNFI,2681
45
- vanna/ollama/__init__.py,sha256=4xyu8aHPdnEHg5a-QAMwr5o0ns5wevsp_zkI-ndMO2k,27
46
- vanna/ollama/ollama.py,sha256=pqHkh2UEIAwBqxRebsLVmmkpiF30yRwCwO_92WY4p0E,3891
47
- vanna/openai/__init__.py,sha256=tGkeQ7wTIPsando7QhoSHehtoQVdYLwFbKNlSmCmNeQ,86
48
- vanna/openai/openai_chat.py,sha256=KU6ynOQ5v7vwrQQ13phXoUXeQUrH6_vmhfiPvWddTrQ,4427
49
- vanna/openai/openai_embeddings.py,sha256=g4pNh9LVcYP9wOoO8ecaccDFWmCUYMInebfHucAa2Gc,1260
50
- vanna/opensearch/__init__.py,sha256=dc9fNtIrOOpkSGp_JKOhGOk26ffyK6W1bm_Cdn9X09I,126
51
- vanna/opensearch/opensearch_vector.py,sha256=VhIcrSyNzWR9ZrqrJnyGFOyuQZs3swfbhr8QyVGI0eI,12226
52
- vanna/opensearch/opensearch_vector_semantic.py,sha256=XV0ApIMXTj_dc3tnmTg4vkQXMaUxsh2Npk_JBEGIj1Q,6325
53
- vanna/oracle/__init__.py,sha256=lE9IB9nK4wsAQ0KdAqoidMoLH80QBsB1HRbI0GQJh8c,46
54
- vanna/oracle/oracle_vector.py,sha256=uWcDFs5uhdKdjdEhFXy4RouTOiS-XMFmaUFuuOLtqho,15974
55
- vanna/pgvector/__init__.py,sha256=7Wvu9qcNdNvZu26Dn53jhO9YXELm0_YsrwBab4BdgVM,37
56
- vanna/pgvector/pgvector.py,sha256=dJfm8rswYZvbaIbnjmyRjL071iw4siE0INibsZtaLXY,9919
57
- vanna/pinecone/__init__.py,sha256=eO5l8aX8vKL6aIUMgAXGPt1jdqKxB_Hic6cmoVAUrD0,90
58
- vanna/pinecone/pinecone_vector.py,sha256=DWJ6USFSGfcFQWC4X9viJddtahAUcDmYq8jrzetB1VE,11445
59
- vanna/qdrant/__init__.py,sha256=PX_OsDOiPMvwCJ2iGER1drSdQ9AyM8iN5PEBhRb6qqY,73
60
- vanna/qdrant/qdrant.py,sha256=Acl_jN-ZrtoQav_G3FuKypXiuYSo_hlP5lyOOwTxCWM,12527
61
- vanna/qianfan/Qianfan_Chat.py,sha256=Z-s9MwH22T4KMR8AViAjms6qoj67pHeQkMsbK-aXf1M,5273
62
- vanna/qianfan/Qianfan_embeddings.py,sha256=TYynAJXlyuZfmoj49h8nU6bXu_GjlXREp3tgfQUca04,954
63
- vanna/qianfan/__init__.py,sha256=QpR43BjZQZcrcDRkyYcYiS-kyqtYmu23AHDzK0Wy1D0,90
64
- vanna/qianwen/QianwenAI_chat.py,sha256=c4stx4QzX-Af28c0H4h2ZDDKJknWcun0L9LevMTSHSE,4076
65
- vanna/qianwen/QianwenAI_embeddings.py,sha256=55cwKpB_N3OVgXkC8uSGQCaIAK8vojz2UnlANtiXWS8,1253
66
- vanna/qianwen/__init__.py,sha256=fBl4zQTpvObGRNJV6EVNjIUQ9aKDDYq-zLPsEZrRpwg,98
67
- vanna/types/__init__.py,sha256=Qhn_YscKtJh7mFPCyCDLa2K8a4ORLMGVnPpTbv9uB2U,4957
68
- vanna/vannadb/__init__.py,sha256=C6UkYocmO6dmzfPKZaWojN0mI5YlZZ9VIbdcquBE58A,48
69
- vanna/vannadb/vannadb_vector.py,sha256=N8poMYvAojoaOF5gI4STD5pZWK9lBKPvyIjbh9dPBa0,14189
70
- vanna/vllm/__init__.py,sha256=aNlUkF9tbURdeXAJ8ytuaaF1gYwcG3ny1MfNl_cwQYg,23
71
- vanna/vllm/vllm.py,sha256=oCdEjT2KP7gbZk-N7G9bfxB15OTtbwJHvNAceXx_r8g,3077
72
- vanna/weaviate/__init__.py,sha256=HL6PAl7ePBAkeG8uln-BmM7IUtWohyTPvDfcPzSGSCg,46
73
- vanna/weaviate/weaviate_vector.py,sha256=tUJIZjEy2mda8CB6C8zeN2SKkEO-UJdLsIqy69skuF0,7584
74
- vanna/xinference/__init__.py,sha256=EFW_sz-BSB2XgmjACOTZmneeIk3I2EiWgue-VVJpnB0,35
75
- vanna/xinference/xinference.py,sha256=2PI-f7XoBUyL_jfuXPqxCsd0W72h8j6CtEDneFw1AtI,1876
76
- vanna-0.7.9.dist-info/licenses/LICENSE,sha256=VYiPMMDqj9BcxUkAYqrAzJpn5tCFXCrnglfRqS5l9Rk,1065
77
- vanna-0.7.9.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
78
- vanna-0.7.9.dist-info/METADATA,sha256=m92ZX8HYX5y5cZTaAtOaw6PRCbf_6JuNnNso5B89MPo,15626
79
- vanna-0.7.9.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes