22# Security Configuration
33# ========================
44
5- # Key unique to Angelos used to verify tokens
6- API_ENDPOINT_KEY =
7-
8- # Key shared by Agnelos and frontend applications to limit requests
5+ # Key shared by Angelos and frontend applications to limit requests
96ANGELOS_APP_API_KEY =
107
118# ========================
@@ -18,10 +15,6 @@ TEST_MODE=true
1815# Control whether to delete existing data before initialization.
1916DELETE_BEFORE_INIT = false
2017
21- # Paths to folders containing the knowledge JSON objects
22- KNOWLEDGE_BASE_FOLDER = ./knowledge/documents
23- QA_FOLDER = ./knowledge/sample-correspondences
24-
2518
2619# ========================
2720# Weaviate Database Configuration
@@ -70,7 +63,7 @@ COHERE_API_KEY_EN=your_english_cohere_key_here # Optional: English-specific sup
7063OPENAI_API_KEY = your_openai_api_key_here
7164
7265# Specify the OpenAI embedding model to use.
73- OPENAI_EMBEDDING_MODEL = text-embedding-ada-002 # Default embedding model (1536 dimensions)
66+ OPENAI_EMBEDDING_MODEL = text-embedding-ada-002
7467
7568
7669# ========================
@@ -93,4 +86,18 @@ AZURE_OPENAI_EMBEDDING_DEPLOYMENT=text-embedding-3-large # Example deployment n
9386AZURE_OPENAI_ENDPOINT = https://your_azure_openai_endpoint_here # Replace with actual endpoint URL
9487
9588# Specify the API version for Azure OpenAI (refer to Azure documentation for latest version).
96- AZURE_OPENAI_VERSION = 2023-03-15-preview # Example API version for Azure OpenAI
89+ AZURE_OPENAI_VERSION = 2023-03-15-preview # Example API version for Azure OpenAI
90+
91+
92+ # ========================
93+ # Local Model Configuration
94+ # ========================
95+
96+ # Enable or disable using a local model
97+ USE_LOCAL_MODEL = true
98+
99+ # Local model parameters
100+ LOCAL_API_KEY =
101+ LOCAL_MODEL =
102+ LOCAL_EMBED_MODEL =
103+ LOCAL_ENDPOINT =
0 commit comments