mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-17 19:44:45 +08:00
12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
|
|
export function urlOfArtifact({
|
||
|
|
filepath,
|
||
|
|
threadId,
|
||
|
|
download = false,
|
||
|
|
}: {
|
||
|
|
filepath: string;
|
||
|
|
threadId: string;
|
||
|
|
download?: boolean;
|
||
|
|
}) {
|
||
|
|
return `http://localhost:8000/api/threads/${threadId}/artifacts${filepath}${download ? "?download=true" : ""}`;
|
||
|
|
}
|