@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.
@@ -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.