Hello! I’m currently using the generative-openai module to query my data (vectorizing with text2vec-openai), with the Python client library.
When I create my schema / class, I’m specifying a particular OpenAI model ( gpt-3.5-turbo ).
Is there a way when querying to override that on a per-query basis? (to gpt-4, for example)?
Or, barring that, is there a way to change the model on the class? I tried modifying the class, but it said that that it was immutable.
I’d like to be able to do some queries with each, depending on the query, without having to have two instances of the data.
Thank you!