-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This is already possible by passing in an OpenAI compatible client like this: class MyVanna(ChromaDB_VectorStore, OpenAI_Chat):
def __init__(self, config=None):
ChromaDB_VectorStore.__init__(self, config=config)
OpenAI_Chat.__init__(self, client=MyOpenAIClient(...), config=config) # Make sure to put your OpenAI-compatible client here
vn = MyVanna(config={'model': 'gpt-4-...'}) |
Beta Was this translation helpful? Give feedback.
This is already possible by passing in an OpenAI compatible client like this: