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 would like to propose a change to the setup.py file. Currently, the file contains the following lines:
deployment_id = "text-embedding-ada-002" # Example deployment ID model_name = "text-embedding-ada-002"
I would like to modify it to use environment variables as follows:
import os deployment_id = os.getenv("AZURE_OPENAI_EMBEDDING_DEPLOYMENT") model_name = os.getenv("AZURE_OPENAI_EMBEDDING_MODEL")
Is there any issue with making this change? Thank you for your consideration.
Best regards,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I would like to propose a change to the setup.py file. Currently, the file contains the following lines:
I would like to modify it to use environment variables as follows:
Is there any issue with making this change? Thank you for your consideration.
Best regards,
The text was updated successfully, but these errors were encountered: