We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am using the Azure OpenAI service and have had the following error message, when initialising the model:
# Or, to use with Azure tm = TopicGPT( api_key = <your-azure-openai-api-key>, azure_endpoint = { "endpoint": <your-azure-openai-endpoint-url>, "api_version": <api-version> }, n_topics = 20 )
TypeError: TopicGPT.init() got an unexpected keyword argument 'azure_endpoint'
On another note, api_key needs to change to openai_api_key on this snippet in my testing.
Any clues to fix this error?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi, try this
tm = TopicGPT( openai_api_key = api_key_openai, n_topics = 20 )
Sorry, something went wrong.
Hi, I am also facing the same issue, is is not working for azure api?
if we try this: tm = TopicGPT( openai_api_key = api_key_openai, n_topics = 20 )
The azure api key does not work here.
No branches or pull requests
Hello,
I am using the Azure OpenAI service and have had the following error message, when initialising the model:
TypeError: TopicGPT.init() got an unexpected keyword argument 'azure_endpoint'
On another note, api_key needs to change to openai_api_key on this snippet in my testing.
Any clues to fix this error?
Thanks!
The text was updated successfully, but these errors were encountered: