-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparallel.ts
123 lines (112 loc) · 4.23 KB
/
parallel.ts
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
// Import the necessary types and functions from the appropriate modules
import type { ModelMessage } from "@hyv/core"; // This type represents a message for the model
import { Agent } from "@hyv/core"; // This is the main class for creating an AI agent
import { createInstruction, GPTModelAdapter } from "@hyv/openai"; // These are helper functions for creating instructions and an adapter for the GPT model
import type { FileContentWithPath } from "@hyv/utils"; // This type represents file content along with its associated path
import { minify } from "@hyv/utils"; // This function helps to minify large blocks of text
// Create an instruction for a TypeScript Developer
// This instruction describes the tasks the developer agent has to perform
const systemInstruction = createInstruction(
"TypeScript Developer",
minify`
Do tasks. Never ask back.
Provide a TypeScript function and export it as named export.
Use DECLARATIVE names.
ONLY VALID and COMPLETE code.
Use ESNext/ESM with 'import/export'.
Create TypeScript files with the solution.
`,
{
thoughts: "your thoughts", // The thoughts of the developer agent
decision: "your decision", // The decision of the developer agent
functionNames: ["string"], // The names of the functions the developer agent generates
files: [
// The files the developer agent generates
{
path: "src/[path/to/filename].ts",
content: "// Valid TypeScript code",
},
],
}
);
// Create an instruction for an Expert TypeScript Developer, who is a Code Merging expert
// This instruction describes the tasks the expert developer agent has to perform
const systemInstruction2 = createInstruction(
"Expert TypeScript Developer, Code Merging expert",
minify`
Do tasks.
Think about the task.
Find duplicates and analyze.
Merge files in the best way possible.
Ensure that no duplicate logic is implemented.
Ensure the same coding style;
Use ESNext/ESM with 'import/export'.
Create TypeScript files with the solution.
`,
{
thoughts: "your thoughts", // The thoughts of the expert developer agent
analysis: "your analysis", // The analysis of the expert developer agent
potentialDuplicates: ["string"], // The potential duplicate code pieces the expert developer agent identifies
decision: "your decision", // The decision of the expert developer agent
files: [
// The files the expert developer agent generates
{
path: "src/[path/to/filename].ts",
content: "// Valid TypeScript code",
},
],
}
);
// Create the agent with the expert developer instruction
const agent3 = new Agent(
new GPTModelAdapter({
model: "gpt-4", // Use GPT-4 model
maxTokens: 4096, // Limit the response to 4096 tokens
systemInstruction: systemInstruction2, // Set the instruction for the agent
}),
{
verbosity: 1, // Set the verbosity level to 1
}
);
// Define a function to instruct the agent and retrieve the results
async function doAndGetResult(task: ModelMessage) {
const agent = new Agent(
new GPTModelAdapter({
model: "gpt-4", // Use GPT-4 model
maxTokens: 2048, // Limit the response to 2048 tokens
systemInstruction, // Set the instruction for the agent
}),
{
verbosity: 1, // Set the verbosity level to 1
}
);
// Instruct the agent and return the file results
return (await agent.assign(task)).message.files;
}
// Begin the main execution
try {
// Define the main task
const mainTask = { task: "Write a simple React todo-list app, be creative" };
// Execute the main task in parallel twice and flatten the results into a single array of files
const files = (
await Promise.all(Array.from({ length: 2 }, async () => doAndGetResult(mainTask)))
).flat() as FileContentWithPath[];
// Define the merge task
const mergeTask = {
task: "merge the code from the pull requests",
files: files.map(file => ({
path: file.path,
content: minify`${file.content}`,
})),
};
// Log the merge results to the console
console.log("mergedResults", mergeTask);
// Assign the merge task to the expert agent and get the result
const result = await agent3.assign(mergeTask);
// Log the final result to the console
console.log("result", result.message);
} catch (error) {
// Catch any error that occurs during the execution
// Log the error to the console
console.error("Error:", error);
}