vanna
vanna copied to clipboard
π€ Chat with your SQL database π. Accurate Text-to-SQL Generation via LLMs using RAG π.
Fixes for https://github.com/vanna-ai/vanna/issues/659 @andreped could you take a look?
**Describe the bug** I have setup pg_vector like so: ``` from vanna.pgvector import PG_VectorStore from vanna.openai import OpenAI_Chat class CustomVanna(PG_VectorStore, OpenAI_Chat): def __init__(self, config=None): PG_VectorStore.__init__(self, config=config) OpenAI_Chat.__init__(self, config=config) vn =...
The bedrock was not working because the client was not recognised, so getting a value error. After adding client now its giving the response we need.
Memory can be constructed by introducing Mem0.
A strange questions, when I run the code on vn.train(dll). This error was returned. It happended on chromadb_vector.py def add_ddl(self, ddl: str, **kwargs) -> str: id = deterministic_uuid(ddl) + "-ddl"...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] The current implementation appears...
When I run the python3 main.py command my application runs normally and vanna.ai can communicate with ollama, however when I place the same application as a docker container when running...
This module allows you to use any existing LangChain chat model integration with Vanna. Using this integration requires no knowledge of the LangChain APIs beyond instantiating a `BaseChatModel`. Additionally, the...
Replaced magic number 14000 with ```MAX_TOKENS = 14000```
Summary: Iβm running into an openai.APIConnectionError in my FastAPI app when trying to use Azure OpenAI. Even though Iβve set up AZURE_ENDPOINT, AZURE_API_VERSION, and AZURE_API_KEY, the app canβt seem to...