Gemini fixes (#1349)

* Fix gemini yolo

* limit diff unchanged lines context to 3 lines

* fix shell command parsing

* remove the GeminiModel struct
This commit is contained in:
Solomon
2025-11-20 16:38:28 +00:00
committed by GitHub
parent 1933bb463c
commit 37f8f3c74f
10 changed files with 99 additions and 151 deletions

View File

@@ -1,9 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"model"
],
"type": "object",
"properties": {
"append_prompt": {
"title": "Append Prompt",
@@ -16,10 +12,9 @@
"default": null
},
"model": {
"type": "string",
"enum": [
"default",
"flash"
"type": [
"string",
"null"
]
},
"yolo": {
@@ -47,5 +42,6 @@
"type": "string"
}
}
}
},
"type": "object"
}