Spaces:
Sleeping
Sleeping
File size: 9,934 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | import { useCopy } from "@/hooks/use-copy";
import { ToolUIPart } from "ai";
import { callCodeRunWorker } from "lib/code-runner/call-worker";
import {
CodeRunnerResult,
LogEntry,
} from "lib/code-runner/code-runner.interface";
import { cn, isString, toAny } from "lib/utils";
import {
AlertTriangleIcon,
CheckIcon,
ChevronRight,
CopyIcon,
Loader,
Percent,
PlayIcon,
} from "lucide-react";
import { memo, useCallback, useEffect, useMemo, useRef, useState } from "react";
import { safe } from "ts-safe";
import { CodeBlock } from "ui/CodeBlock";
import { Skeleton } from "ui/skeleton";
import { TextShimmer } from "ui/text-shimmer";
export const CodeExecutor = memo(function CodeExecutor({
part,
onResult,
type,
}: {
part: ToolUIPart;
onResult?: (result?: any) => void;
type: "javascript" | "python";
}) {
const isRun = useRef(false);
const { copy, copied } = useCopy();
const [isExecuting, setIsExecuting] = useState(false);
const lastStartedAt = useRef<number>(Date.now());
const [realtimeLogs, setRealtimeLogs] = useState<
(CodeRunnerResult["logs"][number] & { time: number })[]
>([]);
const codeResultContainerRef = useRef<HTMLDivElement>(null);
const runCode = useCallback(
async (code: string, type: "javascript" | "python") => {
lastStartedAt.current = Date.now();
const result = await callCodeRunWorker(type, {
code,
timeout: 30000,
onLog: (log) => {
setRealtimeLogs((prev) => [...prev, { ...log, time: Date.now() }]);
},
});
return result;
},
[],
);
const menualToolCall = useCallback(
async (code: string) => {
const result = await runCode(code, type);
const logstring = JSON.stringify(result.logs);
onResult?.({
...toAny({
...result,
logs:
logstring.length > 5000
? [
{
type: "info",
args: [
{
type: "data",
value:
"Log output exceeded storage limit (10KB). Full output was displayed to user but truncated for server storage.",
},
],
},
]
: result.logs,
}),
guide:
"Execution finished. Provide: 1) Main results/outputs 2) Key insights or findings 3) Error explanations if any. Don't repeat code or raw logs - interpret and summarize for the user.",
});
},
[onResult],
);
const isRunning = useMemo(() => {
return isExecuting || part.state.startsWith("input");
}, [isExecuting, part.state]);
const scrollToCode = useCallback(() => {
codeResultContainerRef.current?.scrollTo({
top: codeResultContainerRef.current.scrollHeight,
behavior: "smooth",
});
}, []);
const result = useMemo(() => {
if (part.state.startsWith("input")) return null;
return part.output as CodeRunnerResult;
}, [part]);
const logs = useMemo(() => {
const error = result?.error;
const logs: (LogEntry & { time?: number })[] = realtimeLogs.length
? realtimeLogs
: (result?.logs ?? []);
if (error) {
logs.push({
type: "error",
args: [{ type: "data", value: error }],
time: lastStartedAt.current,
});
}
return logs.map((log, i) => {
return (
<div
key={i}
className={cn(
"flex gap-1 text-muted-foreground pl-3",
log.type == "error" && "text-destructive",
log.type == "warn" && "text-yellow-500",
)}
>
<div className="w-[8.6rem] hidden md:block">
{new Date(toAny(log).time || Date.now()).toISOString()}
</div>
<div className="h-[15px] flex items-center">
{log.type == "error" ? (
<AlertTriangleIcon className="size-2" />
) : log.type == "warn" ? (
<AlertTriangleIcon className="size-2" />
) : (
<ChevronRight className="size-2" />
)}
</div>
<div className="flex-1 min-w-0 whitespace-pre-wrap gap-1">
{log.args.map((arg, i) => {
if (arg.type == "image") {
/* eslint-disable-next-line @next/next/no-img-element */
return <img key={i} src={arg.value} alt="Code output" />;
}
return (
<span key={i}>
{isString(arg?.value)
? arg.value.toString()
: JSON.stringify(arg.value ?? arg)}
</span>
);
})}
</div>
</div>
);
});
}, [part, realtimeLogs]);
const reExecute = useCallback(async () => {
if (isExecuting) return;
setIsExecuting(true);
setRealtimeLogs([
{
type: "log",
args: [{ type: "data", value: "Re-executing code..." }],
time: Date.now(),
},
]);
const code = toAny(part.input)?.code;
safe(() => runCode(code, type)).watch(() => setIsExecuting(false));
}, [part.input, isExecuting]);
const header = useMemo(() => {
if (isRunning)
return (
<>
<Loader className="size-3 animate-spin text-muted-foreground" />
<TextShimmer className="text-xs">Generating Code...</TextShimmer>
</>
);
return (
<>
{result?.error ? (
<>
<AlertTriangleIcon className="size-3 text-destructive" />
<span className="text-destructive text-xs">ERROR</span>
</>
) : (
<div className="text-[7px] bg-input rounded-xs w-4 h-4 p-0.5 flex items-end justify-end font-bold">
{type == "javascript" ? "JS" : type == "python" ? "PY" : ">_"}
</div>
)}
</>
);
}, [part.state, result, isRunning]);
const fallback = useMemo(() => {
return <CodeFallback />;
}, []);
const logContainer = useMemo(() => {
if (!logs.length) return null;
return (
<div className="p-4 text-[10px] text-foreground flex flex-col gap-1 border-t">
<div className="text-foreground flex items-center gap-1">
{isRunning ? (
<Loader className="size-2 animate-spin" />
) : (
<div className="w-1 h-1 mr-1 ring ring-border rounded-full" />
)}
better-chatbot
<Percent className="size-2" />
</div>
{logs}
{isRunning && (
<div className="ml-3 animate-caret-blink text-muted-foreground">
|
</div>
)}
</div>
);
}, [logs, isRunning]);
useEffect(() => {
if (
onResult &&
part.input &&
part.state == "input-available" &&
!isRun.current
) {
isRun.current = true;
menualToolCall(toAny(part.input)?.code);
}
}, [part.state, !!onResult]);
useEffect(() => {
if (isRunning) {
const closeKey = setInterval(scrollToCode, 300);
return () => clearInterval(closeKey);
} else if (part.state.startsWith("output") && isRun.current) {
scrollToCode();
}
}, [isRunning]);
return (
<div className="flex flex-col">
<div className="px-6 py-3">
<div className="border overflow-x-hidden relative rounded-lg shadow fade-in animate-in duration-500">
<div className="py-2.5 bg-border px-4 flex items-center gap-1.5 z-10 min-h-[37px]">
{header}
<div className="flex-1" />
{part.state.startsWith("output") && (
<>
<div
className="flex items-center gap-1 text-[10px] text-muted-foreground px-2 py-1 transition-all rounded-sm cursor-pointer hover:bg-input hover:text-foreground font-semibold"
onClick={reExecute}
>
<PlayIcon className="size-2" />
Run
</div>
<div
className="flex items-center gap-1 text-[10px] text-muted-foreground px-2 py-1 transition-all rounded-sm cursor-pointer hover:bg-input hover:text-foreground font-semibold"
onClick={() => copy(toAny(part.input)?.code ?? "")}
>
{copied ? (
<CheckIcon className="size-2" />
) : (
<CopyIcon className="size-2" />
)}
Copy
</div>
</>
)}
</div>
<div className="relative">
<div className="absolute pointer-events-none top-0 left-0 w-full h-1/6 bg-gradient-to-b from-background to-transparent z-10" />
<div className="absolute pointer-events-none bottom-0 left-0 w-full h-1/6 bg-gradient-to-t from-background to-transparent z-10" />
<div className="absolute pointer-events-none top-0 left-0 w-1/6 h-full bg-gradient-to-r from-background to-transparent z-10" />
<div className="absolute pointer-events-none top-0 right-0 w-1/6 h-full bg-gradient-to-l from-background to-transparent z-10" />
<div
className="min-h-14 p-6 text-xs overflow-y-auto max-h-[40vh]"
ref={codeResultContainerRef}
>
<CodeBlock
className="p-4 text-[10px] overflow-x-auto"
code={toAny(part.input)?.code}
lang={type}
fallback={fallback}
/>
</div>
</div>
{logContainer}
</div>
</div>
</div>
);
});
function CodeFallback() {
return (
<div className="flex flex-col gap-2">
<Skeleton className="h-3 w-1/6" />
<Skeleton className="h-3 w-1/3" />
<Skeleton className="h-3 w-1/2" />
<Skeleton className="h-3 w-1/4" />
</div>
);
}
|