forked from Josh-XT/AGiXT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
427 lines (325 loc) · 12.8 KB
/
app.py
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import uvicorn
from fastapi import FastAPI, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from Config import Config
from AgentLLM import AgentLLM
from Config.Agent import Agent
from Commands import Commands
from Chain import Chain
from CustomPrompt import CustomPrompt
import threading
from typing import Optional, Dict, List, Any
from provider import get_provider_options
CFG = Config()
app = FastAPI(
title="Agent-LLM",
description="Agent-LLM is an Artificial Intelligence Automation platform for creating and managing AI agents.",
version="1.1.8-alpha",
)
agent_threads = {}
agent_stop_events = {}
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
class AgentName(BaseModel):
agent_name: str
class AgentNewName(BaseModel):
new_name: str
class Objective(BaseModel):
objective: str
class Prompt(BaseModel):
prompt: str
class PromptName(BaseModel):
prompt_name: str
class PromptList(BaseModel):
prompts: List[str]
class ChainNewName(BaseModel):
new_name: str
class ChainName(BaseModel):
chain_name: str
class StepInfo(BaseModel):
step_number: int
agent_name: str
prompt_type: str
prompt: str
class ChainStep(BaseModel):
step_number: int
agent_name: str
prompt_type: str
prompt: str
class ChainStepNewInfo(BaseModel):
old_step_number: int
new_step_number: int
class ResponseMessage(BaseModel):
message: str
class TaskOutput(BaseModel):
output: str
message: Optional[str] = None
class ToggleCommandPayload(BaseModel):
command_name: str
enable: bool
class CustomPromptModel(BaseModel):
prompt_name: str
prompt: str
class AgentSettings(BaseModel):
agent_name: str
settings: Dict[str, Any]
# Get list of providers
@app.get("/api/provider", tags=["Provider"])
async def get_providers():
providers = CFG.get_providers()
return {"providers": providers}
# Get available provider settings
# These should be used to set new agents settings.
@app.get("/api/provider/{provider_name}", tags=["Provider"])
async def get_provider_settings(provider_name: str):
settings = get_provider_options(provider_name)
return {"settings": settings}
@app.post("/api/agent", tags=["Agent"])
async def add_agent(agent: AgentSettings) -> Dict[str, str]:
agent_info = Agent(agent.agent_name).add_agent(agent.agent_name, agent.settings)
return {"message": "Agent added", "agent_file": agent_info["agent_file"]}
# For adding new agents, expecting a payload like this:
# {
# "agent_name": "test",
# "settings": {
# "provider": "openai",
# "OPENAI_API_KEY": "sk-...",
# "AI_MODEL": "gpt-3.5-turbo",
# "AI_TEMPERATURE": 0.7,
# "MAX_TOKENS": 4096,
# }
# }
# Take what you get from "/api/provider/{provider_name}" endpoint to set the settings.
# Get user input for each of those settings up the new agent.
@app.patch("/api/agent/{agent_name}", tags=["Agent"])
async def rename_agent(agent_name: str, new_name: AgentNewName) -> ResponseMessage:
Agent(agent_name).rename_agent(agent_name, new_name.new_name)
return ResponseMessage(
message=f"Agent {agent_name} renamed to {new_name.new_name}."
)
# Update agent
@app.put("/api/agent/{agent_name}", tags=["Agent"])
async def update_agent_settings(
agent_name: str, settings: AgentSettings
) -> ResponseMessage:
update_config = Agent(agent_name).update_agent_config(settings.settings, "settings")
return ResponseMessage(message=update_config)
@app.delete("/api/agent/{agent_name}", tags=["Agent"])
async def delete_agent(agent_name: str) -> ResponseMessage:
result, status_code = Agent(agent_name).delete_agent(agent_name)
if status_code == 200:
return ResponseMessage(message=result["message"])
else:
raise HTTPException(status_code=status_code, detail=result["message"])
@app.get("/api/agent", tags=["Agent"])
async def get_agents():
agents = CFG.get_agents()
return {"agents": agents}
@app.get("/api/agent/{agent_name}", tags=["Agent"])
async def get_agent_config(agent_name: str):
agent_config = Agent(agent_name).get_agent_config()
return {"agent": agent_config}
@app.get("/api/{agent_name}/chat", tags=["Agent"])
async def get_chat_history(agent_name: str):
chat_history = Agent(agent_name).get_chat_history()
return {"chat_history": chat_history}
@app.delete("/api/agent/{agent_name}/memory", tags=["Agent"])
async def wipe_agent_memories(agent_name: str) -> ResponseMessage:
Agent(agent_name).wipe_agent_memories(agent_name)
return ResponseMessage(message=f"Memories for agent {agent_name} deleted.")
@app.post("/api/agent/{agent_name}/instruct", tags=["Agent"])
async def instruct(agent_name: str, prompt: Prompt):
agent = AgentLLM(agent_name)
response = agent.run(
task=prompt.prompt,
max_context_tokens=500,
long_term_access=False,
prompt="instruct",
)
return {"response": str(response)}
@app.post("/api/agent/{agent_name}/chat", tags=["Agent"])
async def chat(agent_name: str, prompt: Prompt):
agent = AgentLLM(agent_name)
response = agent.run(prompt.prompt, max_context_tokens=500)
return {"response": str(response)}
@app.get("/api/agent/{agent_name}/command", tags=["Agent"])
async def get_commands(agent_name: str):
commands = Commands(agent_name)
available_commands = commands.get_available_commands()
return {"commands": available_commands}
@app.patch("/api/agent/{agent_name}/command", tags=["Agent"])
async def toggle_command(
agent_name: str, payload: ToggleCommandPayload
) -> ResponseMessage:
agent = Agent(agent_name)
try:
if payload.command_name == "*":
commands = Commands(agent_name)
for each_command_name in commands.agent_config["commands"]:
commands.agent_config["commands"][each_command_name] = payload.enable
agent.update_agent_config(commands.agent_config["commands"], "commands")
return ResponseMessage(
message=f"All commands enabled for agent '{agent_name}'."
)
else:
commands = Commands(agent_name)
commands.agent_config["commands"][payload.command_name] = payload.enable
agent.update_agent_config(commands.agent_config["commands"], "commands")
return ResponseMessage(
message=f"Command '{payload.command_name}' toggled for agent '{agent_name}'."
)
except Exception as e:
print(e)
raise HTTPException(
status_code=500,
detail=f"Error enabling all commands for agent '{agent_name}': {str(e)}",
)
@app.post("/api/agent/{agent_name}/task", tags=["Agent"])
async def start_task_agent(agent_name: str, objective: Objective) -> ResponseMessage:
# If it's running stop it.
CFG = Agent(agent_name)
if (
agent_name in CFG.agent_instances
and CFG.agent_instances[agent_name].get_status()
):
agent_stop_events[agent_name].set()
del agent_threads[agent_name]
del agent_stop_events[agent_name]
return ResponseMessage(message="Task agent stopped")
# Otherwise start it.
# If it doesn't exist, create it.
if agent_name not in CFG.agent_instances:
CFG.agent_instances[agent_name] = AgentLLM(agent_name)
stop_event = threading.Event()
agent_stop_events[agent_name] = stop_event
agent_thread = threading.Thread(
target=CFG.agent_instances[agent_name].run_task,
args=(stop_event, objective.objective),
)
agent_threads[agent_name] = agent_thread
agent_thread.start()
return ResponseMessage(message="Task agent started")
@app.get("/api/agent/{agent_name}/task", tags=["Agent"])
async def get_task_output(agent_name: str) -> TaskOutput:
CFG = Agent(agent_name)
if agent_name not in CFG.agent_instances:
return TaskOutput(output="", message="")
return TaskOutput(
output=CFG.get_task_output(
agent_name, CFG.agent_instances[agent_name].primary_objective
),
message="Task agent is still running",
)
@app.get("/api/agent/{agent_name}/task/status", tags=["Agent"])
async def get_task_status(agent_name: str):
CFG = Agent(agent_name)
if agent_name not in CFG.agent_instances:
return {"status": False}
status = CFG.agent_instances[agent_name].get_status()
return {"status": status}
@app.get("/api/chain", tags=["Chain"])
async def get_chains():
chains = Chain().get_chains()
return chains
@app.get("/api/chain/{chain_name}", tags=["Chain"])
async def get_chain(chain_name: str):
chain_data = Chain().get_chain(chain_name)
return {"chain": chain_data}
@app.post("/api/chain/{chain_name}/run", tags=["Chain"])
async def run_chain(chain_name: str) -> ResponseMessage:
Chain().run_chain(chain_name)
return {"message": f"Chain '{chain_name}' started."}
@app.post("/api/chain", tags=["Chain"])
async def add_chain(chain_name: ChainName) -> ResponseMessage:
Chain().add_chain(chain_name.chain_name)
return ResponseMessage(message=f"Chain '{chain_name.chain_name}' created.")
@app.put("/api/chain/{chain_name}", tags=["Chain"])
async def rename_chain(chain_name: str, new_name: ChainNewName) -> ResponseMessage:
Chain().rename_chain(chain_name, new_name.new_name)
return ResponseMessage(
message=f"Chain '{chain_name}' renamed to '{new_name.new_name}'."
)
@app.delete("/api/chain/{chain_name}", tags=["Chain"])
async def delete_chain(chain_name: str) -> ResponseMessage:
Chain().delete_chain(chain_name)
return ResponseMessage(message=f"Chain '{chain_name}' deleted.")
@app.post("/api/chain/{chain_name}/step", tags=["Chain"])
async def add_step(chain_name: str, step_info: StepInfo) -> ResponseMessage:
Chain().add_step(
chain_name,
step_info.step_number,
step_info.prompt_type,
step_info.prompt,
step_info.agent_name,
)
return {"message": f"Step {step_info.step_number} added to chain '{chain_name}'."}
@app.put("/api/chain/{chain_name}/step/{step_number}", tags=["Chain"])
async def update_step(
chain_name: str, step_number: int, chain_step: ChainStep
) -> ResponseMessage:
Chain().update_step(
chain_name,
chain_step.step_number,
chain_step.prompt_type,
chain_step.prompt,
chain_step.agent_name,
)
return {
"message": f"Step {chain_step.step_number} updated for chain '{chain_name}'."
}
@app.patch("/api/chain/{chain_name}/step/move", tags=["Chain"])
async def move_step(
chain_name: str, chain_step_new_info: ChainStepNewInfo
) -> ResponseMessage:
Chain().move_step(
chain_name,
chain_step_new_info.old_step_number,
chain_step_new_info.new_step_number,
)
return {
"message": f"Step {chain_step_new_info.old_step_number} moved to {chain_step_new_info.new_step_number} in chain '{chain_name}'."
}
@app.delete("/api/chain/{chain_name}/step/{step_number}", tags=["Chain"])
async def delete_step(chain_name: str, step_number: int) -> ResponseMessage:
Chain().delete_step(chain_name, step_number)
return {"message": f"Step {step_number} deleted from chain '{chain_name}'."}
@app.post("/api/prompt", tags=["Prompt"])
async def add_prompt(prompt: CustomPromptModel) -> ResponseMessage:
try:
CustomPrompt().add_prompt(prompt.prompt_name, prompt.prompt)
return ResponseMessage(message=f"Prompt '{prompt.prompt_name}' added.")
except Exception as e:
raise HTTPException(status_code=400, detail=str(e))
@app.get("/api/prompt/{prompt_name}", tags=["Prompt"], response_model=CustomPromptModel)
async def get_prompt(prompt_name: str):
try:
prompt_content = CustomPrompt().get_prompt(prompt_name)
return {"prompt_name": prompt_name, "prompt": prompt_content}
except Exception as e:
raise HTTPException(status_code=404, detail=str(e))
@app.get("/api/prompt", response_model=PromptList, tags=["Prompt"])
async def get_prompts():
prompts = CustomPrompt().get_prompts()
return {"prompts": prompts}
@app.delete("/api/prompt/{prompt_name}", tags=["Prompt"])
async def delete_prompt(prompt_name: str) -> ResponseMessage:
try:
CustomPrompt().delete_prompt(prompt_name)
return ResponseMessage(message=f"Prompt '{prompt_name}' deleted.")
except Exception as e:
raise HTTPException(status_code=404, detail=str(e))
@app.put("/api/prompt/{prompt_name}", tags=["Prompt"])
async def update_prompt(prompt: CustomPromptModel) -> ResponseMessage:
try:
CustomPrompt().update_prompt(prompt.prompt_name, prompt.prompt)
return ResponseMessage(message=f"Prompt '{prompt.prompt_name}' updated.")
except Exception as e:
raise HTTPException(status_code=404, detail=str(e))
if __name__ == "__main__":
uvicorn.run(app, host="127.0.0.1", port=7437)