Using GPT-4o for llm #773
-
Can someone tell me how to switch to GPT-4o with my API, the standard LLM of Vanna? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You change the model property in your config from the base class. eg: |
Beta Was this translation helpful? Give feedback.
-
Yeah it works thanks, but if i want to do embeddings with a better model in the vector database of Vanna its possible? And for ChromaDB it's possible to change it too? |
Beta Was this translation helpful? Give feedback.
You change the model property in your config from the base class. eg:
vn = MyVanna(config={'api_key': 'sk-...', 'model': 'gpt-4-...'})