-
Notifications
You must be signed in to change notification settings - Fork 953
/
Copy pathagent_management.js
54 lines (45 loc) · 1.26 KB
/
agent_management.js
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
import { Agent, Runner, function_tool, handoff, GuardrailFunctionOutput, RunContextWrapper } from 'openai-agents';
import CustomAgentHooks from './agent_hooks';
const agents = {};
export function createAgent(agentData) {
const {
name,
instructions,
model,
tools,
context,
outputTypes,
handoffs,
guardrails,
cloning,
} = agentData;
const agent = new Agent({
name,
instructions,
model,
tools: tools.map(tool => function_tool(tool)),
context: new RunContextWrapper(context),
output_type: outputTypes,
handoffs: handoffs.map(handoffData => handoff(handoffData)),
input_guardrails: guardrails.input.map(guardrail => new GuardrailFunctionOutput(guardrail)),
output_guardrails: guardrails.output.map(guardrail => new GuardrailFunctionOutput(guardrail)),
hooks: new CustomAgentHooks(name),
});
if (cloning) {
agent.clone();
}
agents[name] = agent;
}
export function runAgent(agentName, input) {
const agent = agents[agentName];
if (!agent) {
throw new Error(`Agent with name ${agentName} does not exist.`);
}
return Runner.run(agent, input);
}
export function getAgent(agentName) {
return agents[agentName];
}
export function getAllAgents() {
return Object.values(agents);
}