turn on tool call streaming

This commit is contained in:
Dax Raad
2025-06-11 11:36:03 -04:00
parent a9b230f419
commit d4379c8c93
2 changed files with 12 additions and 2 deletions

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,
})) {
}
}
}