diff options
| author | Martin Bielik <martin.bielik@instea.sk> | 2024-12-17 09:22:42 +0100 |
|---|---|---|
| committer | Martin Bielik <martin.bielik@instea.sk> | 2024-12-17 09:22:42 +0100 |
| commit | 44625c9d77f6c44f1a4623402cada772dfaf6f9f (patch) | |
| tree | 2e76b00168460bba319bba869f3921c2724e55be /roles-example.ini | |
| parent | 8fde389664ca59773c38dc0ec1a434a98bc2428b (diff) | |
| download | vim-ai-44625c9d77f6c44f1a4623402cada772dfaf6f9f.tar.gz | |
simplified new role syntax
Diffstat (limited to 'roles-example.ini')
| -rw-r--r-- | roles-example.ini | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/roles-example.ini b/roles-example.ini index 6134aca..41ec899 100644 --- a/roles-example.ini +++ b/roles-example.ini @@ -14,18 +14,18 @@ prompt = please refactor it in a more clean and concise way so that my colleagues can maintain the code more easily. Also, explain why you want to refactor the code so that I can add the explanation to the Pull Request. -config.options.temperature = 0.4 +options.temperature = 0.4 # command specific options: [refactor.chat] -config.options.model = gpt-4o +options.model = gpt-4o [refactor.complete] -config.options.model = gpt-4 +options.model = gpt-4 [refactor.edit] -config.options.model = gpt-4 +options.model = gpt-4 [o1-mini] -config.options.stream = 0 -config.options.model = o1-mini -config.options.max_completion_tokens = 25000 -config.options.temperature = 1 -config.options.initial_prompt = +options.stream = 0 +options.model = o1-mini +options.max_completion_tokens = 25000 +options.temperature = 1 +options.initial_prompt = |