Hey @dhuesca did you get this to work?
on a hunch, I think you might have provided incorrect provider/model name combination
If you're using azure, the provider is
azure-openai
so, your pipes code would be
def pipes(self):
# add model ids in the following format "{provider}/{model}"
return [
{
"id": "azure-openai/gpt-3.5-turbo",
"name": "azure-openai/gpt-3.5-turbo",
},
]