You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to pull a list of all the models using the following: api.Models.GetModelsAsync().Result My program just get stuck.
Does anyone knows how to pull a list of all AI models?
Thanks!
Juan
The text was updated successfully, but these errors were encountered:
jaacMusic
changed the title
Issue pullilng models list
Issue pulling models list
May 1, 2024
Thanks Bojake for the response!
I was able to work around this issue using the following and skipping the first 8 values.
for (int i = 8; i < typeof(OpenAI_API.Models.Model).GetProperties().Length; i++)
{
AIModels.Items.Add(typeof(OpenAI_API.Models.Model).GetProperties()[i].Name);
}
Hello,
When trying to pull a list of all the models using the following:
api.Models.GetModelsAsync().Result
My program just get stuck.Does anyone knows how to pull a list of all AI models?
Thanks!
Juan
The text was updated successfully, but these errors were encountered: