Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- requirements.txt +1 -1
- setup.py +10 -0
requirements.txt
CHANGED
@@ -39,4 +39,4 @@ torch
|
|
39 |
xlrd
|
40 |
SpeechRecognition
|
41 |
# 添加以下行来安装当前目录的包
|
42 |
-
|
|
|
39 |
xlrd
|
40 |
SpeechRecognition
|
41 |
# 添加以下行来安装当前目录的包
|
42 |
+
smolagents
|
setup.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from setuptools import setup
|
2 |
+
|
3 |
+
setup(
|
4 |
+
name="smolagents",
|
5 |
+
version="1.10.0.dev0",
|
6 |
+
description="🤗 smolagents: a barebones library for agents. Agents write python code to call tools or orchestrate other agents.",
|
7 |
+
packages=find_packages(where="src"),
|
8 |
+
package_dir={"": "src"},
|
9 |
+
python_requires=">=3.10",
|
10 |
+
)
|