@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.
@@ -1,3 +1,4 @@
1
1
  export declare function getDefaultTimeoutMs(): number;
2
2
  export declare function getMaxTimeoutMs(): number;
3
+ export declare function getCommitAndPRInstructions(): string;
3
4
  export declare function getSimplePrompt(): string;
@@ -27,8 +27,6 @@ export declare const outputSchema: () => z.ZodObject<{
27
27
  edit_mode: z.ZodString;
28
28
  error: z.ZodOptional<z.ZodString>;
29
29
  notebook_path: z.ZodString;
30
- original_file: z.ZodString;
31
- updated_file: z.ZodString;
32
30
  }, z.core.$strip>;
33
31
  type OutputSchema = ReturnType<typeof outputSchema>;
34
32
  export type Output = z.infer<OutputSchema>;
@@ -71,8 +69,6 @@ export declare const NotebookEditTool: Omit<{
71
69
  language: string;
72
70
  edit_mode: string;
73
71
  notebook_path: string;
74
- original_file: string;
75
- updated_file: string;
76
72
  cell_id?: string;
77
73
  error?: string;
78
74
  }, toolUseID: string): {
@@ -120,8 +116,6 @@ export declare const NotebookEditTool: Omit<{
120
116
  error: string;
121
117
  cell_id: string;
122
118
  notebook_path: string;
123
- original_file: string;
124
- updated_file: string;
125
119
  };
126
120
  } | {
127
121
  data: {
@@ -132,8 +126,6 @@ export declare const NotebookEditTool: Omit<{
132
126
  cell_id: any;
133
127
  error: string;
134
128
  notebook_path: string;
135
- original_file: string;
136
- updated_file: string;
137
129
  };
138
130
  }>;
139
131
  }, "isEnabled" | "isConcurrencySafe" | "isReadOnly" | "isDestructive" | "checkPermissions" | "toAutoClassifierInput" | "userFacingName"> & {