Spaces:
Sleeping
Sleeping
Deminiko commited on
Commit ·
29b80d9
1
Parent(s): 682ccbe
add hf config
Browse files- README.md +5 -1
- requirements.txt +8 -4
README.md
CHANGED
|
@@ -4,11 +4,15 @@ emoji: ⚛️
|
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
short_description: Multi-agent quantum circuit generation with Gemini/LLMs
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# QAgents-Workflows: Quantum Circuit Optimization Agent System
|
|
|
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 6.0.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
| 11 |
short_description: Multi-agent quantum circuit generation with Gemini/LLMs
|
| 12 |
+
tags:
|
| 13 |
+
- mcp-in-action-track-enterprise
|
| 14 |
+
- mcp-in-action-track-consumer
|
| 15 |
+
- mcp-in-action-track-creative
|
| 16 |
---
|
| 17 |
|
| 18 |
# QAgents-Workflows: Quantum Circuit Optimization Agent System
|
requirements.txt
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
google-genai>=0.6.0
|
| 2 |
-
litellm>=1.42.0
|
|
|
|
| 3 |
requests>=2.31.0
|
| 4 |
python-dotenv>=1.0.0
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
huggingface_hub<0.20.0
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
gradio[mcp]~=6.0.0
|
| 3 |
+
huggingface_hub>=0.33.5,<2.0
|
| 4 |
+
# AI Models
|
| 5 |
google-genai>=0.6.0
|
| 6 |
+
litellm>=1.42.0
|
| 7 |
+
# env
|
| 8 |
requests>=2.31.0
|
| 9 |
python-dotenv>=1.0.0
|
| 10 |
+
# Data validation
|
| 11 |
+
pydantic>=2.0.0
|
|
|