Skip to content

Commit 7d04e0d

Browse files
committed
feat: Add pydantic_settings import check and update requirements
1 parent c332bde commit 7d04e0d

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

check_install.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
try:
2+
import pydantic_settings
3+
print("pydantic_settings is installed")
4+
except ImportError:
5+
print("pydantic_settings is NOT installed")

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Core AI and LLM dependencies
22
httpx>=0.25.0
33
pydantic>=2.5.0
4+
pydantic-settings>=2.0.0
45
structlog>=23.2.0
56
rich>=13.7.0
67
click>=8.1.0

0 commit comments

Comments
 (0)