Skip to content

Commit

Permalink
Update env.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jij1949 authored Dec 20, 2023
1 parent 9e3697a commit 0efaad9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions querybook/server/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ class QuerybookSettings(object):
AI_ASSISTANT_PROVIDER = get_env_config("AI_ASSISTANT_PROVIDER")
AI_ASSISTANT_CONFIG = get_env_config("AI_ASSISTANT_CONFIG") or {}

VECTOR_STORE_PROVIDER = get_env_config("VECTOR_STORE_PROVIDER")
VECTOR_STORE_CONFIG = get_env_config("VECTOR_STORE_CONFIG") or {}
EMBEDDINGS_PROVIDER = get_env_config("EMBEDDINGS_PROVIDER")
EMBEDDINGS_CONFIG = get_env_config("EMBEDDINGS_CONFIG") or {}

# Datadog
DD_AGENT_HOST = get_env_config("DD_AGENT_HOST", optional=True)
DD_DOGSTATSD_PORT = int(get_env_config("DD_DOGSTATSD_PORT", optional=True) or 8125)
Expand Down

0 comments on commit 0efaad9

Please sign in to comment.