/
githubmirror
/
llm_agents
Обзор
Документация
Войти
/
githubmirror
/
llm_agents
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
setup.py
21 строка
637 B
Marc Päpper
Added requirements and setup.py
04 апр 2023, 23:02
04 апр 2023, 23:02
e904b1b
Код
Авторство
О чём код?
from setuptools import setup, find_packages setup( name='llm_agents', version='0.1.0', description='A package for building agents which use the OpenAI API to figure out actions to take and can use tools.', author='Marc Päpper', author_email='marc@paepper.com', url='https://github.com/mpaepper/llm_agents', packages=find_packages(), install_requires=[ 'google-search-results>=2.4.2', 'openai>=0.27.0', 'pydantic>=1.10.5', 'requests>=2.28.2' ], classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License' ], )