This commit is contained in:
Anton Larin
2023-06-02 22:27:55 +02:00
parent bbf55ca46e
commit b4bd34fb96
6 changed files with 205 additions and 160 deletions

View File

@@ -16,6 +16,9 @@ class Settings(BaseSettings):
API_KEY: str = None # LLM api key
EMBEDDINGS_KEY: str = None # api key for embeddings (if using openai, just copy API_KEY
OPENAI_API_BASE: str = "" # azure openai api base url
OPENAI_API_VERSION: str = "" # azure openai api version
AZURE_DEPLOYMENT_NAME: str = "" # azure deployment name
path = Path(__file__).parent.parent.absolute()