acp: default to big pickle

This commit is contained in:
Aiden Cline
2025-11-05 14:58:57 -06:00
parent ef0b5e3dcb
commit f95333aaa4

View File

@@ -48,6 +48,13 @@ export namespace ACP {
constructor(connection: AgentSideConnection, config: ACPConfig = {}) { constructor(connection: AgentSideConnection, config: ACPConfig = {}) {
this.connection = connection this.connection = connection
if (!config.defaultModel) {
// default to big pickle
config.defaultModel = {
providerID: "opencode",
modelID: "big-pickle",
}
}
this.config = config this.config = config
this.setupEventSubscriptions() this.setupEventSubscriptions()
} }