Skip to content

Commit

Permalink
Merge pull request #292 from samuelp-mw/feature/improve-usage-for-azure
Browse files Browse the repository at this point in the history
Specifying endpoints/deployments for Azure OpenAI embeddings
  • Loading branch information
mkorpela authored Apr 12, 2024
2 parents 8cc32c5 + 34941aa commit 028ed27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ AZURE_OPENAI_DEPLOYMENT_NAME=placeholder
AZURE_OPENAI_API_KEY=placeholder
AZURE_OPENAI_API_BASE=placeholder
AZURE_OPENAI_API_VERSION=placeholder
AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT_NAME=placeholder
CONNERY_RUNNER_URL=https://your-personal-connery-runner-url
CONNERY_RUNNER_API_KEY=placeholder
PROXY_URL=your_proxy_url
Expand Down
8 changes: 7 additions & 1 deletion backend/app/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ def _determine_azure_or_openai_embeddings() -> PGVector:
if os.environ.get("AZURE_OPENAI_API_KEY"):
return PGVector(
connection_string=PG_CONNECTION_STRING,
embedding_function=AzureOpenAIEmbeddings(),
embedding_function=AzureOpenAIEmbeddings(
azure_endpoint=os.environ.get("AZURE_OPENAI_API_BASE"),
azure_deployment=os.environ.get(
"AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT_NAME"
),
openai_api_version=os.environ.get("AZURE_OPENAI_API_VERSION"),
),
use_jsonb=True,
)
raise ValueError(
Expand Down

0 comments on commit 028ed27

Please sign in to comment.