31 lines
723 B
TypeScript
31 lines
723 B
TypeScript
import type { CreateConfigValues } from "@paperclipai/adapter-utils";
|
|
|
|
export const defaultCreateValues: CreateConfigValues = {
|
|
adapterType: "claude_local",
|
|
cwd: "",
|
|
instructionsFilePath: "",
|
|
promptTemplate: "",
|
|
model: "",
|
|
thinkingEffort: "",
|
|
chrome: false,
|
|
dangerouslySkipPermissions: false,
|
|
search: false,
|
|
dangerouslyBypassSandbox: false,
|
|
command: "",
|
|
args: "",
|
|
extraArgs: "",
|
|
envVars: "",
|
|
envBindings: {},
|
|
url: "",
|
|
bootstrapPrompt: "",
|
|
payloadTemplateJson: "",
|
|
workspaceStrategyType: "project_primary",
|
|
workspaceBaseRef: "",
|
|
workspaceBranchTemplate: "",
|
|
worktreeParentDir: "",
|
|
runtimeServicesJson: "",
|
|
maxTurnsPerRun: 80,
|
|
heartbeatEnabled: false,
|
|
intervalSec: 300,
|
|
};
|