Spaces:
Running
Running
ai-puppy
commited on
Commit
·
9861912
1
Parent(s):
3b5ef1a
set up the proper env
Browse files- README.md +7 -1
- agent.py +0 -0
- requirements.txt +69 -1
README.md
CHANGED
@@ -11,4 +11,10 @@ license: mit
|
|
11 |
short_description: CodeAct Agent to process large data set
|
12 |
---
|
13 |
|
14 |
-
An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
short_description: CodeAct Agent to process large data set
|
12 |
---
|
13 |
|
14 |
+
An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
|
15 |
+
|
16 |
+
uv venv --python 3.11
|
17 |
+
source .venv/bin/activate
|
18 |
+
deactivate
|
19 |
+
uv pip freeze > requirements.txt
|
20 |
+
uv pip install -r requirements.txt
|
agent.py
ADDED
File without changes
|
requirements.txt
CHANGED
@@ -1 +1,69 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiofiles==24.1.0
|
2 |
+
annotated-types==0.7.0
|
3 |
+
anyio==4.9.0
|
4 |
+
certifi==2025.4.26
|
5 |
+
charset-normalizer==3.4.2
|
6 |
+
click==8.2.1
|
7 |
+
fastapi==0.115.12
|
8 |
+
ffmpy==0.6.0
|
9 |
+
filelock==3.18.0
|
10 |
+
fsspec==2025.5.1
|
11 |
+
gradio==5.33.0
|
12 |
+
gradio-client==1.10.2
|
13 |
+
groovy==0.1.2
|
14 |
+
h11==0.16.0
|
15 |
+
hf-xet==1.1.3
|
16 |
+
httpcore==1.0.9
|
17 |
+
httpx==0.28.1
|
18 |
+
huggingface-hub==0.32.4
|
19 |
+
idna==3.10
|
20 |
+
jinja2==3.1.6
|
21 |
+
jsonpatch==1.33
|
22 |
+
jsonpointer==3.0.0
|
23 |
+
langchain-core==0.3.64
|
24 |
+
langchain-sandbox==0.0.6
|
25 |
+
langgraph==0.4.8
|
26 |
+
langgraph-checkpoint==2.0.26
|
27 |
+
langgraph-codeact==0.1.3
|
28 |
+
langgraph-prebuilt==0.2.2
|
29 |
+
langgraph-sdk==0.1.70
|
30 |
+
langsmith==0.3.45
|
31 |
+
markdown-it-py==3.0.0
|
32 |
+
markupsafe==3.0.2
|
33 |
+
mdurl==0.1.2
|
34 |
+
numpy==2.3.0
|
35 |
+
orjson==3.10.18
|
36 |
+
ormsgpack==1.10.0
|
37 |
+
packaging==24.2
|
38 |
+
pandas==2.3.0
|
39 |
+
pillow==11.2.1
|
40 |
+
pydantic==2.11.5
|
41 |
+
pydantic-core==2.33.2
|
42 |
+
pydub==0.25.1
|
43 |
+
pygments==2.19.1
|
44 |
+
python-dateutil==2.9.0.post0
|
45 |
+
python-multipart==0.0.20
|
46 |
+
pytz==2025.2
|
47 |
+
pyyaml==6.0.2
|
48 |
+
requests==2.32.3
|
49 |
+
requests-toolbelt==1.0.0
|
50 |
+
rich==14.0.0
|
51 |
+
ruff==0.11.13
|
52 |
+
safehttpx==0.1.6
|
53 |
+
semantic-version==2.10.0
|
54 |
+
shellingham==1.5.4
|
55 |
+
six==1.17.0
|
56 |
+
sniffio==1.3.1
|
57 |
+
starlette==0.46.2
|
58 |
+
tenacity==9.1.2
|
59 |
+
tomlkit==0.13.3
|
60 |
+
tqdm==4.67.1
|
61 |
+
typer==0.16.0
|
62 |
+
typing-extensions==4.14.0
|
63 |
+
typing-inspection==0.4.1
|
64 |
+
tzdata==2025.2
|
65 |
+
urllib3==2.4.0
|
66 |
+
uvicorn==0.34.3
|
67 |
+
websockets==15.0.1
|
68 |
+
xxhash==3.5.0
|
69 |
+
zstandard==0.23.0
|