Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions distribution/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ You can see an overview of the APIs and Providers the image ships with in the ta
| inference | inline::sentence-transformers |
| inference | remote::azure |
| inference | remote::bedrock |
| inference | remote::openai |
| inference | remote::vertexai |
| inference | remote::vllm |
| inference | remote::watsonx |
Expand Down
1 change: 1 addition & 0 deletions distribution/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ distribution_spec:
- provider_type: remote::watsonx
- provider_type: remote::azure
- provider_type: remote::vertexai
- provider_type: remote::openai
vector_io:
- provider_type: inline::milvus
- provider_type: remote::milvus
Expand Down
5 changes: 5 additions & 0 deletions distribution/run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ providers:
config:
project: ${env.VERTEX_AI_PROJECT:=}
location: ${env.VERTEX_AI_LOCATION:=us-central1}
- provider_id: ${env.OPENAI_API_KEY:+openai}
provider_type: remote::openai
config:
api_key: ${env.OPENAI_API_KEY:=}
base_url: ${env.OPENAI_BASE_URL:=https://api.openai.com/v1}
vector_io:
- provider_id: milvus
provider_type: inline::milvus
Expand Down
Loading