Skip to content

Commit de061ef

Browse files
committed
fix: resolved the pydantic validation errors
1 parent 60ae93a commit de061ef

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
3232
- name: Run tests
3333
env:
34+
OPENAI_API_KEY: mock_key
3435
LOG_LEVEL: INFO
3536
DATA_DIR: ./tests/data
3637
run: |

src/config/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Settings(BaseSettings):
55
"""
66
Configuration settings for Project Aether.
77
"""
8-
openai_api_key: str
8+
openai_api_key: Optional[str] = None
99
qdrant_url: str = "http://localhost:6333"
1010
qdrant_api_key: Optional[str] = None
1111
qdrant_collection: str = "project_aether_docs"

0 commit comments

Comments
 (0)