Spaces:
Sleeping
Sleeping
File size: 2,962 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 | import { generateUUID } from "lib/utils";
import { NodeKind, UINode } from "./workflow.interface";
import { defaultObjectJsonSchema } from "./shared.workflow";
import { ObjectJsonSchema7 } from "app-types/util";
export function createUINode(
kind: NodeKind,
option?: Partial<{
position: { x: number; y: number };
name?: string;
id?: string;
}>,
): UINode {
const id = option?.id ?? generateUUID();
const node: UINode = {
...option,
id,
position: option?.position ?? { x: 0, y: 0 },
data: {
kind: kind as any,
name: option?.name ?? kind.toUpperCase(),
id,
outputSchema: structuredClone(defaultObjectJsonSchema),
runtime: {
isNew: true,
},
},
type: "default",
};
if (node.data.kind === NodeKind.Output) {
node.data.outputData = [];
} else if (node.data.kind === NodeKind.LLM) {
node.data.outputSchema = structuredClone(defaultLLMNodeOutputSchema);
node.data.messages = [
{
role: "user",
},
];
} else if (node.data.kind === NodeKind.Condition) {
node.data.branches = {
if: {
id: "if",
logicalOperator: "AND",
type: "if",
conditions: [],
},
else: {
id: "else",
logicalOperator: "AND",
type: "else",
conditions: [],
},
};
} else if (node.data.kind === NodeKind.Tool) {
node.data.outputSchema.properties = {
tool_result: {
type: "object",
},
};
} else if (node.data.kind === NodeKind.Http) {
node.data.outputSchema.properties = {
response: {
type: "object",
properties: {
status: {
type: "number",
},
statusText: {
type: "string",
},
ok: {
type: "boolean",
},
headers: {
type: "object",
},
body: {
type: "string",
},
duration: {
type: "number",
},
size: {
type: "number",
},
},
},
};
// Set default values for HTTP node
node.data.method = "GET";
node.data.headers = [];
node.data.query = [];
node.data.timeout = 30000; // 30 seconds default
} else if (node.data.kind === NodeKind.Template) {
node.data.outputSchema = structuredClone(defaultTemplateNodeOutputSchema);
// Set default values for Template node
node.data.template = {
type: "tiptap",
tiptap: {
type: "doc",
content: [],
},
};
}
return node;
}
export const defaultLLMNodeOutputSchema: ObjectJsonSchema7 = {
type: "object",
properties: {
answer: {
type: "string",
},
totalTokens: {
type: "number",
},
},
};
export const defaultTemplateNodeOutputSchema: ObjectJsonSchema7 = {
type: "object",
properties: {
template: {
type: "string",
},
},
};
|