You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Absolute path to file or directory, e.g. `/repo/file.py` or `/repo`.
229
+
*/
230
+
path: string;
231
+
232
+
/**
233
+
* Required parameter of `create` command, with the content of the file to be created.
234
+
*/
235
+
file_text?: string;
236
+
237
+
/**
238
+
* Required parameter of `insert` command. The `new_str` will be inserted AFTER the line `insert_line` of `path`.
239
+
*/
240
+
insert_line?: number;
241
+
242
+
/**
243
+
* Optional parameter of `str_replace` command containing the new string (if not given, no string will be added). Required parameter of `insert` command containing the string to insert.
244
+
*/
245
+
new_str?: string;
246
+
247
+
/**
248
+
* Required parameter of `str_replace` command containing the string in `path` to replace.
249
+
*/
250
+
old_str?: string;
251
+
252
+
/**
253
+
* Optional parameter of `view` command when `path` points to a file. If none is given, the full file is shown. If provided, the file will be shown in the indicated line number range, e.g. [11, 12] will show lines 11 and 12. Indexing at 1 to start. Setting `[start_line, -1]` shows all lines from `start_line` to the end of the file.
0 commit comments