Files
huskies/frontend/src/api/rpcContract.snapshot.json
T

118 lines
2.3 KiB
JSON
Raw Normal View History

2026-05-13 07:10:00 +00:00
{
"model.set_preference": {
"params": {
"model": "claude-sonnet-4-6"
},
"result": {
"ok": true
}
},
"anthropic.set_api_key": {
"params": {
"api_key": "sk-ant-..."
},
"result": {
"ok": true
}
},
"settings.put_editor": {
"params": {
"editor_command": "zed"
},
"result": {
"editor_command": "zed"
}
},
"settings.open_file": {
"params": {
"path": "src/main.rs",
"line": 42
},
"result": {
"ok": true
}
},
"settings.put_project": {
"params": {
"default_qa": "server",
"default_coder_model": null,
"max_coders": null,
"max_retries": 2,
"base_branch": null,
"rate_limit_notifications": true,
"timezone": null,
"rendezvous": null,
"watcher_sweep_interval_secs": 60,
"watcher_done_retention_secs": 86400
},
"result": {
"default_qa": "server",
"default_coder_model": null,
"max_coders": null,
"max_retries": 2,
"base_branch": null,
"rate_limit_notifications": true,
"timezone": null,
"rendezvous": null,
"watcher_sweep_interval_secs": 60,
"watcher_done_retention_secs": 86400
}
},
"project.open": {
"params": {
"path": "/path/to/project"
},
"result": {
"path": "/path/to/project"
}
},
"project.close": {
"params": {},
"result": {
"ok": true
}
},
"project.forget": {
"params": {
"path": "/path/to/project"
},
"result": {
"ok": true
}
},
"bot_config.save": {
"params": {
"transport": "matrix",
"enabled": true,
"homeserver": "https://matrix.example",
"username": "bot",
"password": "secret",
"room_ids": [
"!room:example"
],
"slack_bot_token": null,
"slack_signing_secret": null,
"slack_channel_ids": null
},
"result": {
"transport": "matrix",
"enabled": true,
"homeserver": "https://matrix.example",
"username": "bot",
"password": "secret",
"room_ids": [
"!room:example"
],
"slack_bot_token": null,
"slack_signing_secret": null,
"slack_channel_ids": null
}
},
"chat.cancel": {
"params": {},
"result": {
"ok": true
}
}
}