mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 02:40:39 +09:00
23 lines
498 B
TypeScript
23 lines
498 B
TypeScript
|
|
import type { CreateConfigValues } from "@paperclip/adapter-utils";
|
||
|
|
|
||
|
|
export const defaultCreateValues: CreateConfigValues = {
|
||
|
|
adapterType: "claude_local",
|
||
|
|
cwd: "",
|
||
|
|
promptTemplate: "",
|
||
|
|
model: "",
|
||
|
|
thinkingEffort: "",
|
||
|
|
dangerouslySkipPermissions: false,
|
||
|
|
search: false,
|
||
|
|
dangerouslyBypassSandbox: false,
|
||
|
|
command: "",
|
||
|
|
args: "",
|
||
|
|
extraArgs: "",
|
||
|
|
envVars: "",
|
||
|
|
envBindings: {},
|
||
|
|
url: "",
|
||
|
|
bootstrapPrompt: "",
|
||
|
|
maxTurnsPerRun: 80,
|
||
|
|
heartbeatEnabled: false,
|
||
|
|
intervalSec: 300,
|
||
|
|
};
|