@opencow-ai/opencow-agent-sdk 0.4.15 → 0.4.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/capabilities/tools/BashTool/prompt.d.ts +1 -0
- package/dist/capabilities/tools/NotebookEditTool/NotebookEditTool.d.ts +0 -8
- package/dist/cli.mjs +1101 -2057
- package/dist/client.js +56 -417
- package/dist/constants/envVars.d.ts +0 -1
- package/dist/providers/shared/model/model.d.ts +0 -9
- package/dist/sdk.js +56 -417
- package/dist/session/sessionStorage.d.ts +0 -4
- package/dist/session/settings/types.d.ts +0 -5
- package/dist/state/AppStateStore.d.ts +0 -2
- package/dist/types/hooks.d.ts +0 -2
- package/dist/types/logs.d.ts +1 -26
- package/dist/types/toolRuntime.d.ts +0 -2
- package/package.json +1 -1
- package/dist/capabilities/generatedFiles.d.ts +0 -14
- package/dist/capabilities/tools/shared/teamMemorySync/index.d.ts +0 -121
- package/dist/capabilities/tools/shared/teamMemorySync/types.d.ts +0 -132
- package/dist/capabilities/tools/shared/teamMemorySync/watcher.d.ts +0 -78
- package/dist/lib/sequential.d.ts +0 -12
- package/dist/session/attribution.d.ts +0 -40
- package/dist/session/commitAttribution.d.ts +0 -193
- package/dist/session/sessionFileAccessHooks.d.ts +0 -11
|
@@ -234,7 +234,6 @@ export declare const ENV_VARS: {
|
|
|
234
234
|
readonly MEMORY_EXTRA_GUIDELINES: EnvVarSpec;
|
|
235
235
|
readonly MEMORY_PATH_OVERRIDE: EnvVarSpec;
|
|
236
236
|
readonly DEBUG_INPUT: EnvVarSpec;
|
|
237
|
-
readonly DISABLE_CO_AUTHORED_BY: EnvVarSpec;
|
|
238
237
|
readonly DISABLE_EARLY_INPUT: EnvVarSpec;
|
|
239
238
|
readonly ENABLE_EXTENDED_KEYS: EnvVarSpec;
|
|
240
239
|
readonly USE_READABLE_STDIN: EnvVarSpec;
|
|
@@ -86,15 +86,6 @@ export declare function renderModelSetting(setting: ModelName | ModelAlias): str
|
|
|
86
86
|
*/
|
|
87
87
|
export declare function getPublicModelDisplayName(model: ModelName): string | null;
|
|
88
88
|
export declare function renderModelName(model: ModelName): string;
|
|
89
|
-
/**
|
|
90
|
-
* Returns a safe author name for public display (e.g., in git commit trailers).
|
|
91
|
-
* Returns "Claude {ModelName}" for publicly known models, or "Claude ({model})"
|
|
92
|
-
* for unknown/internal models so the exact model name is preserved.
|
|
93
|
-
*
|
|
94
|
-
* @param model The full model name
|
|
95
|
-
* @returns "Claude {ModelName}" for public models, or "Claude ({model})" for non-public models
|
|
96
|
-
*/
|
|
97
|
-
export declare function getPublicModelName(model: ModelName): string;
|
|
98
89
|
/**
|
|
99
90
|
* Returns a full model name for use in this session, possibly after resolving
|
|
100
91
|
* a model alias.
|