@builder.io/ai-utils 0.4.34 → 0.4.35
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/package.json +1 -1
- package/src/codegen.d.ts +12 -1
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -107,6 +107,16 @@ export interface ListDirToolInput {
|
|
|
107
107
|
export interface RevertToolInput {
|
|
108
108
|
checkpoint_id: string;
|
|
109
109
|
}
|
|
110
|
+
export interface TodoReadToolInput {
|
|
111
|
+
}
|
|
112
|
+
export interface TodoWriteToolInput {
|
|
113
|
+
todos: {
|
|
114
|
+
content: string;
|
|
115
|
+
status: "pending" | "in_progress" | "completed";
|
|
116
|
+
priority: "high" | "medium" | "low";
|
|
117
|
+
id: string;
|
|
118
|
+
}[];
|
|
119
|
+
}
|
|
110
120
|
export interface CodeGenToolMap {
|
|
111
121
|
view_path: ViewPathToolInput;
|
|
112
122
|
glob_search: GlobSearchToolInput;
|
|
@@ -126,7 +136,6 @@ export interface CodeGenToolMap {
|
|
|
126
136
|
GetStyleInspiration: GetStyleInspirationToolInput;
|
|
127
137
|
MultiEdit: MultiSearchReplaceInput;
|
|
128
138
|
FindMedia: FindMediaToolInput;
|
|
129
|
-
LS: ListDirToolInput;
|
|
130
139
|
Memory: MemoryToolInput;
|
|
131
140
|
Bash: BashToolInput;
|
|
132
141
|
WebSearch: WebSearchToolInput;
|
|
@@ -135,6 +144,8 @@ export interface CodeGenToolMap {
|
|
|
135
144
|
Glob: GlobSearchToolInput;
|
|
136
145
|
DevServerControl: DevServerControlInput;
|
|
137
146
|
Revert: RevertToolInput;
|
|
147
|
+
TodoRead: TodoReadToolInput;
|
|
148
|
+
TodoWrite: TodoWriteToolInput;
|
|
138
149
|
}
|
|
139
150
|
export type CodeGenTools = keyof CodeGenToolMap;
|
|
140
151
|
export type AllCodeGenTools = CodeGenTools | "web_search";
|