forked from shroominic/codeinterpreter-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update agents/config add zoltraak_agent
- Loading branch information
Showing
9 changed files
with
74 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
agents: | ||
- name: coding_agent | ||
config_path: coding_agent/config.yaml | ||
- name: split_agent | ||
config_path: split_agent/config.yaml | ||
- name: fix_agent | ||
config_path: fix_agent/config.yaml | ||
- name: test_case_generator_agent | ||
config_path: test_case_generator_agent/config.yaml | ||
- name: code_fix_agent | ||
config_path: code_fix_agent/config.yaml | ||
- name: code_optimizer_agent | ||
config_path: code_optimizer_agent/config.yaml | ||
- name: code_review_and_forward_agent | ||
config_path: code_review_and_forward_agent/config.yaml | ||
- name: design_writer_agent | ||
config_path: design_writer_agent/config.yaml | ||
- name: design_refactoring_agent | ||
config_path: design_refactoring_agent/config.yaml | ||
- name: code_review_agent | ||
config_path: code_review_agent/config.yaml | ||
- name: code_split_agent | ||
config_path: code_split_agent/config.yaml | ||
- name: code_write_agent | ||
config_path: code_write_agent/config.yaml | ||
- name: design_fix_agent | ||
config_path: design_fix_agent/config.yaml | ||
- name: design_update_agent | ||
config_path: design_update_agent/config.yaml | ||
- name: design_write_agent | ||
config_path: design_write_agent/config.yaml | ||
- name: test_case_generator_agent | ||
config_path: test_case_generator_agent/config.yaml | ||
- name: zoltraak_agent | ||
config_path: zoltraak_agent/config.yaml |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...code_review_and_forward_agent/config.yaml → ...ents/config/code_review_agent/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...nfig/design_refactoring_agent/config.yaml → ...gents/config/design_fix_agent/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
src/codeinterpreterapi/agents/config/design_update_agent/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
agent_definition: | ||
agent_name: "design_fix_agent" | ||
agent_type: tool_calling | ||
agent_role: | | ||
ソフトウェアの設計情報の最新化をお願いします。 | ||
既存の「software_design.md」が最新のソースに対して古くなっています。 | ||
各ソースファイルの相対パス、概要、関数名の一覧を集約し、Markdown形式で整理します。 | ||
agent_expected_output: | | ||
更新されたMarkdown形式の文書「software_design.md」を出力してください。以下のフォーマットに従ってください: | ||
# ソフトウェア設計文書 | ||
## ソースファイル一覧 | ||
- **相対パス**: `src/module1.py` | ||
- **概要**: モジュール1の主機能を実装 | ||
- **関数名**: | ||
- `function_a` | ||
- `function_b` | ||
- **相対パス**: `src/module2.py` | ||
- **概要**: モジュール2の補助機能を実装 | ||
- **関数名**: | ||
- `function_c` | ||
- `function_d` | ||
- **相対パス**: `tests/test_module1.py` | ||
- **概要**: モジュール1のテストケースを含む | ||
- **関数名**: | ||
- `test_function_a` | ||
agent_acceptable_task_description: | | ||
ソースコード修正に応じて、ソフトウェアの設計文書を見直し、ソースファイルの相対パス、概要、および関数名の一覧を更新するタスクです。 |
6 changes: 4 additions & 2 deletions
6
...ts/config/design_writer_agent/config.yaml → ...nts/config/design_write_agent/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/codeinterpreterapi/agents/config/zoltraak_agent/config.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
agent_definition: | ||
agent_name: "zoltraak_agent" | ||
agent_type: tool_calling | ||
agent_role: | | ||
単一のソースコードでは実現できないような複雑なプログラムのプロトタイプの作成をお願いします。 | ||
zoltraakシステムは複数の高品質のソースコード群を自動生成することができます。 | ||
複雑なプログラムを初回作成するときには、必ず本agentを使ってください。 | ||
次に続くシステムプロンプトを注意深く読んで正しくふるまってください。 | ||
agent_expected_output: | | ||
全体設計を書いたmdファイルとソースコードを出力してください。 | ||
agent_acceptable_task_description: | | ||
複雑なプログラムを初回作成するタスクです。 | ||
初回作成するときには、必ず本agentを使ってください。 | ||
(注意)現時点ではpythonにしか対応していません。 |