nsarrazin HF Staff commited on
Commit
51f6328
·
unverified ·
1 Parent(s): 15baec4

fix(tools): remove debug log

Browse files
Files changed (1) hide show
  1. src/lib/server/tools/utils.ts +0 -1
src/lib/server/tools/utils.ts CHANGED
@@ -34,7 +34,6 @@ export async function* callSpace<TInput extends unknown[], TOutput extends unkno
34
 
35
  let data;
36
  for await (const output of job) {
37
- console.log({ output });
38
  if (output.type === "data") {
39
  data = output.data as TOutput;
40
  }
 
34
 
35
  let data;
36
  for await (const output of job) {
 
37
  if (output.type === "data") {
38
  data = output.data as TOutput;
39
  }