turn on tool call streaming

This commit is contained in:
Dax Raad
2025-06-11 11:36:03 -04:00
parent 7d9edc53db
commit d759b814c7
2 changed files with 12 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
export namespace File {
const glob = new Bun.Glob("**/*")
export async function search(path: string) {
for await (const entry of glob.scan({
cwd: path,
onlyFiles: true,
})) {
}
}
}