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 /tests/resources/roles.ini | |
| parent | 8fde389664ca59773c38dc0ec1a434a98bc2428b (diff) | |
| download | vim-ai-44625c9d77f6c44f1a4623402cada772dfaf6f9f.tar.gz | |
simplified new role syntax
Diffstat (limited to '')
| -rw-r--r-- | tests/resources/roles.ini | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/resources/roles.ini b/tests/resources/roles.ini index 450df1d..b677462 100644 --- a/tests/resources/roles.ini +++ b/tests/resources/roles.ini @@ -1,22 +1,22 @@ [test-role-simple] prompt = simple role prompt -config.options.model = o1-preview +options.model = o1-preview [test-role] -config.options.model = model-common -config.ui.paste_mode = 0 +options.model = model-common +ui.paste_mode = 0 [test-role.chat] -config.options.endpoint_url = https://localhost/chat -config.ui.open_chat_command = preset_tab +options.endpoint_url = https://localhost/chat +ui.open_chat_command = preset_tab [test-role.complete] -config.engine = complete -config.options.endpoint_url = https://localhost/complete +engine = complete +options.endpoint_url = https://localhost/complete [test-role.edit] -config.engine = complete -config.options.endpoint_url = https://localhost/edit +engine = complete +options.endpoint_url = https://localhost/edit [chat-only-role.chat] -config.options.open_chat_command = preset_tab +options.open_chat_command = preset_tab [deprecated-test-role-simple] prompt = simple role prompt |