agent-builder-api

agent-builder-apiは、エージェントを構築するためのPythonライブラリであり、開発者がAIエージェントを簡単に作成できるように設計されています。使いやすいAPIを提供し、さまざまな機能を統合することで、迅速なプロトタイピングや実装が可能です。

GitHubスター

28

ユーザー評価

未評価

お気に入り

0

閲覧数

25

フォーク

29

イシュー

2

インストール方法
難易度
上級
推定所要時間
20-45

インストール方法

1Set up a Python virtualenv and install dependencies
sh
   python -m venv --prompt agent-builder-api venv
   source venv/Scripts/activate
   # venv/Scripts/activate (Windows PS)
   pip install -r requirements.txt
   
2Set the model name and API key in .env file
env
   OPENAI_API_KEY="sk----"
   MODEL_NAME="openai"
   
3Start the server in the new terminal
sh
   python -m agentbuilder.main
   
For fine-grained dependency management, use [Poetry](https://python-poetry.org/) to pick and choose dependency packs based on your LLM model provider and tool features.
1Follow the [Offical Instruction Guide](https://python-poetry.org/docs/#installation) to install Poetry.
2Pick and choose dependency packs to install.
```sh