Commit
·
5f56e54
1
Parent(s):
bca0f3b
Update permissions in settings.local.json and upgrade Gradio and Pydantic versions in requirements.txt
Browse files- .claude/settings.local.json +2 -1
- requirements.txt +2 -3
.claude/settings.local.json
CHANGED
|
@@ -3,7 +3,8 @@
|
|
| 3 |
"allow": [
|
| 4 |
"WebSearch",
|
| 5 |
"Bash(python app.py:*)",
|
| 6 |
-
"WebFetch(domain:github.com)"
|
|
|
|
| 7 |
],
|
| 8 |
"deny": [],
|
| 9 |
"ask": []
|
|
|
|
| 3 |
"allow": [
|
| 4 |
"WebSearch",
|
| 5 |
"Bash(python app.py:*)",
|
| 6 |
+
"WebFetch(domain:github.com)",
|
| 7 |
+
"Bash(pip show:*)"
|
| 8 |
],
|
| 9 |
"deny": [],
|
| 10 |
"ask": []
|
requirements.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Core Framework
|
| 2 |
-
gradio==
|
| 3 |
-
pydantic
|
| 4 |
fastmcp>=0.3.0
|
| 5 |
|
| 6 |
# AI/ML
|
|
@@ -18,7 +18,6 @@ httpx>=0.27.1
|
|
| 18 |
|
| 19 |
# Utilities
|
| 20 |
python-dotenv>=1.0.0
|
| 21 |
-
pydantic>=2.5.3
|
| 22 |
|
| 23 |
# Testing
|
| 24 |
pytest>=8.0.0
|
|
|
|
| 1 |
# Core Framework
|
| 2 |
+
gradio==5.49.1
|
| 3 |
+
pydantic==2.8.2 # Pin to 2.8.2 to fix schema parsing bug
|
| 4 |
fastmcp>=0.3.0
|
| 5 |
|
| 6 |
# AI/ML
|
|
|
|
| 18 |
|
| 19 |
# Utilities
|
| 20 |
python-dotenv>=1.0.0
|
|
|
|
| 21 |
|
| 22 |
# Testing
|
| 23 |
pytest>=8.0.0
|