Spaces:
Sleeping
Sleeping
🦄 feat: Added config file for development commit
Browse files- Added config file for development commit
- Added `aira` config section for specifying the AIRA configuration
- Added `gaiah` config section for specifying the Gaia configuration
- Added `repo` config section for specifying the repository configuration
- Added `local` config section for specifying the local configuration
- Added `commit` config section for specifying the commit configuration
- .aira/config.dev.commit.yml +26 -0
.aira/config.dev.commit.yml
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aira:
|
2 |
+
gaiah: # 共通設定
|
3 |
+
run: true
|
4 |
+
repo:
|
5 |
+
repo_name: "AIRA-Sample04"
|
6 |
+
description: ""
|
7 |
+
private: True
|
8 |
+
local:
|
9 |
+
repo_dir: "./"
|
10 |
+
no_initial_commit: false
|
11 |
+
commit:
|
12 |
+
commit_msg_path: ".SourceSageAssets/COMMIT_CRAFT/llm_output.md"
|
13 |
+
branch_name: null
|
14 |
+
|
15 |
+
dev: # 開発時の設定 (必要に応じて上書き)
|
16 |
+
repo:
|
17 |
+
create_repo: false
|
18 |
+
local:
|
19 |
+
init_repo: false
|
20 |
+
commit:
|
21 |
+
process_commits: true
|
22 |
+
|
23 |
+
# aira --mode sourcesage commit --config=.aira\config.dev.commit.yml --ss-model-name="gemini/gemini-1.5-pro-latest" --llm-output="llm_output.md" --ignore-file=".iris.SourceSageignore"
|
24 |
+
# aira --mode sourcesage commit --config=.aira\config.dev.commit.yml --ss-model-name="gemini/gemini-1.5-flash-latest" --llm-output="llm_output.md"
|
25 |
+
# aira --mode sourcesage commit --config=.aira\config.dev.commit.yml --ss-model-name="gpt-4o-mini" --llm-output="llm_output.md"
|
26 |
+
# sourcesage --ignore-file=".iris.SourceSageignore"
|