initial emollm-metagpt

This commit is contained in:
jujimeizuo 2024-03-25 20:59:25 +08:00
parent 7fa3a8b706
commit ad7c611476
6 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ zhipuai/
data/
pdf/
.idea/
logs/
*.jsonl
*.json

0
agents/__init__.py Normal file
View File

View File

0
agents/utils/__init__.py Normal file
View File

View File

@ -1,3 +1,5 @@
git+https://gitee.com/jujimeizuo/meta-gpt-tianji.git
transformers==4.36.2
streamlit==1.24.0
sentencepiece==0.1.99

7
setup.py Normal file
View File

@ -0,0 +1,7 @@
from setuptools import setup, find_packages
setup(
name="emollm",
version="1.0",
packages=find_packages(exclude=["build", "dist"]),
)