add missing variable after testin and minor fixes.

This commit is contained in:
Anton Larin
2023-06-17 16:09:22 +02:00
parent b722845aff
commit 84168e22d0
3 changed files with 5 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ def call_openai_api(docs, folder_name):
os.environ.get("OPENAI_API_BASE")
and os.environ.get("OPENAI_API_VERSION")
and os.environ.get("AZURE_DEPLOYMENT_NAME")
and os.environ.get("AZURE_EMBEDDINGS_DEPLOYMENT_NAME")
):
os.environ["OPENAI_API_TYPE"] = "azure"
openai_embeddings = OpenAIEmbeddings(model=os.environ.get("AZURE_EMBEDDINGS_DEPLOYMENT_NAME"))