We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c332bde commit 7d04e0dCopy full SHA for 7d04e0d
check_install.py
@@ -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
@@ -1,6 +1,7 @@
# Core AI and LLM dependencies
httpx>=0.25.0
pydantic>=2.5.0
+pydantic-settings>=2.0.0
structlog>=23.2.0
6
rich>=13.7.0
7
click>=8.1.0
0 commit comments