We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ae93a commit de061efCopy full SHA for de061ef
2 files changed
.github/workflows/ci.yml
@@ -31,6 +31,7 @@ jobs:
31
32
- name: Run tests
33
env:
34
+ OPENAI_API_KEY: mock_key
35
LOG_LEVEL: INFO
36
DATA_DIR: ./tests/data
37
run: |
src/config/settings.py
@@ -5,7 +5,7 @@ class Settings(BaseSettings):
5
"""
6
Configuration settings for Project Aether.
7
8
- openai_api_key: str
+ openai_api_key: Optional[str] = None
9
qdrant_url: str = "http://localhost:6333"
10
qdrant_api_key: Optional[str] = None
11
qdrant_collection: str = "project_aether_docs"
0 commit comments