hope / model-controller.json
Cunt1257's picture
Upload model-controller.json
12b0018 verified
Raw
History Blame Contribute Delete
1.24 kB
{
"modelName": "openai/gpt-4o",
"baseUrl": "https://openrouter.ai/api/v1",
"temperature": 0.2,
"top_p": 0.95,
"max_tokens": 4096,
"systemPromptPath": "system/offering-rules.md",
"projectRulesPath": "system/project-rules.md",
"allowedTools": [
"file_read",
"file_write",
"terminal"
],
"responseMode": "direct",
"tokenSaving": true,
"verbosity": "minimal",
"allowExplanations": false,
"allowSummaries": false,
"allowNextSteps": false,
"strictFileListOnly": true,
"strictProjectScope": true,
"lowRestrictionCodingMode": true,
"allowedTerminalCommands": {
"npm": [
{
"args": [
"install"
],
"allowExtraArgs": true
},
{
"args": [
"run",
"build"
],
"allowExtraArgs": false
}
],
"git": [
{
"args": [
"add"
],
"allowExtraArgs": true
},
{
"args": [
"commit"
],
"allowExtraArgs": true
},
{
"args": [
"push"
],
"allowExtraArgs": false
}
]
},
"allowFrontendFiles": false,
"repoRoot": "./project",
"projectMemoryRoot": "./project_memory"
}