Embeddings
#103
Replies: 1 comment 3 replies
-
The ChatGptNet library is tied to chat completion, offering some specific features like response streaming, function calling and automatic conversation handling. Embeddings requires different behaviors and object models. Instead of modifying the existing methods, I think it could be a better idea to provide something that explicitly targets embeddings. I will think about it! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Any plans for adding support for using OpenAI API for generating embeddings? OpenAIChatGptServiceConfiguration.cs is hardcoded to use the /chat/completions endpoint no matter what model is passed in. Is it an idea the check what model is passed, and when for example the "text-embedding-ada-002" model is passed, it could return the /embeddings endpoint of the ChatGPT API?
Beta Was this translation helpful? Give feedback.
All reactions