vanna icon indicating copy to clipboard operation
vanna copied to clipboard

πŸ€– Chat with your SQL database πŸ“Š. Accurate Text-to-SQL Generation via LLMs using RAG πŸ”„.

Results 191 vanna issues
Sort by recently updated
recently updated
newest added

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 =...

bug

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.

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...

bug

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...

bug