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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
#![allow(unused)]
//! # `ManagerGPT` agent.
//!
use crate::agents::agent::AgentGPT;
use crate::agents::architect::ArchitectGPT;
use crate::agents::backend::BackendGPT;
#[cfg(feature = "img")]
use crate::agents::designer::DesignerGPT;
use crate::agents::frontend::FrontendGPT;
#[cfg(feature = "git")]
use crate::agents::git::GitGPT;
use crate::agents::types::AgentType;
use crate::common::utils::strip_code_blocks;
use crate::common::utils::{ClientType, Communication, Task};
use crate::prompts::manager::{FRAMEWORK_MANAGER_PROMPT, LANGUAGE_MANAGER_PROMPT, MANAGER_PROMPT};
use crate::traits::agent::Agent;
use crate::traits::functions::{AsyncFunctions, Functions};
use anyhow::{Result, anyhow};
use colored::*;
#[cfg(feature = "gem")]
use gems::Client;
use std::borrow::Cow;
use std::env::var;
use tracing::{debug, info};
#[cfg(feature = "mem")]
use {
crate::common::memory::load_long_term_memory, crate::common::memory::long_term_memory_context,
crate::common::memory::save_long_term_memory,
};
#[cfg(feature = "oai")]
use {openai_dive::v1::models::FlagshipModel, openai_dive::v1::resources::chat::*};
#[cfg(feature = "cld")]
use anthropic_ai_sdk::types::message::{
ContentBlock, CreateMessageParams, Message as AnthMessage, MessageClient,
RequiredMessageParams, Role,
};
#[cfg(feature = "gem")]
use gems::{
chat::ChatBuilder,
imagen::ImageGenBuilder,
messages::{Content, Message},
models::Model,
stream::StreamBuilder,
traits::CTrait,
};
#[cfg(any(feature = "oai", feature = "gem", feature = "cld", feature = "xai"))]
use crate::traits::functions::ReqResponse;
#[cfg(feature = "xai")]
use x_ai::{
chat_compl::{ChatCompletionsRequestBuilder, Message as XaiMessage},
traits::ChatCompletionsFetcher,
};
/// Struct representing a ManagerGPT, responsible for managing different types of GPT agents.
#[derive(Debug)]
#[allow(unused)]
pub struct ManagerGPT {
/// Represents the GPT agent associated with the manager.
agent: AgentGPT,
/// Represents the tasks to be executed by the manager.
tasks: Task,
/// Represents the programming language used in the tasks.
language: &'static str,
/// Represents a collection of GPT agents managed by the manager.
agents: Vec<AgentType>,
/// Represents an OpenAI or Gemini client for interacting with their API.
client: ClientType,
}
impl ManagerGPT {
/// Constructor function to create a new instance of ManagerGPT.
///
/// # Arguments
///
/// * `objective` - Objective description for ManagerGPT.
/// * `position` - Position description for ManagerGPT.
/// * `request` - Description of the user's request.
/// * `language` - Programming language used in the tasks.
///
/// # Returns
///
/// (`ManagerGPT`): A new instance of ManagerGPT.
///
/// # Business Logic
///
/// - Initializes the GPT agent with the given objective and position.
/// - Initializes an empty collection of agents.
/// - Initializes tasks with the provided description.
/// - Initializes a Gemini client for interacting with Gemini API.
///
pub fn new(
objective: &'static str,
position: &'static str,
request: &str,
language: &'static str,
) -> Self {
let mut agent = AgentGPT::new_borrowed(objective, position);
agent.id = agent.position().to_string().into();
let agents: Vec<AgentType> = Vec::new();
// let request = format!("{}\n\nUser Request: {}", MANAGER_PROMPT, request);
let tasks: Task = Task {
description: request.to_string().into(),
scope: None,
urls: None,
frontend_code: None,
backend_code: None,
api_schema: None,
};
info!(
"{}",
format!("[*] {:?}: 🛠️ Getting ready!", agent.position(),)
.bright_white()
.bold()
);
let client = ClientType::from_env();
Self {
agent,
tasks,
language,
agents,
client,
}
}
/// Adds an agent to the manager.
///
/// # Arguments
///
/// * `agent` - The agent to be added.
///
/// # Business Logic
///
/// - Adds the specified agent to the collection of agents managed by the manager.
///
fn add_agent(&mut self, agent: AgentType) {
self.agents.push(agent);
}
async fn spawn_default_agents(&mut self) {
self.add_agent(AgentType::Architect(
ArchitectGPT::new(
"Creates innovative website designs and user experiences",
"ArchitectGPT",
)
.await,
));
#[cfg(feature = "img")]
self.add_agent(AgentType::Designer(
DesignerGPT::new(
"Creates innovative website designs and user experiences",
"DesignerGPT",
)
.await,
));
self.add_agent(AgentType::Backend(
BackendGPT::new(
"Expertise lies in writing backend code for web servers and JSON databases",
"BackendGPT",
self.language,
)
.await,
));
self.add_agent(AgentType::Frontend(
FrontendGPT::new(
"Expertise lies in writing frontend code for Yew rust framework",
"FrontendGPT",
self.language,
)
.await,
));
#[cfg(feature = "git")]
self.add_agent(AgentType::Git(
GitGPT::new(
"Handles git operations like staging and committing code",
"GitGPT",
)
.await,
));
}
/// Spawns default agents if the collection is empty.
///
/// # Business Logic
///
/// - Adds default agents to the collection if it is empty.
///
pub async fn execute_prompt(&mut self, prompt: String) -> Result<String, anyhow::Error> {
let provider = var("AI_PROVIDER").unwrap_or_else(|_| "gemini".to_string());
let response = match &mut self.client {
#[cfg(feature = "gem")]
ClientType::Gemini(gem_client) if provider == "gemini" => {
let parameters = ChatBuilder::default()
.messages(vec![Message::User {
content: Content::Text(prompt),
name: None,
}])
.build()?;
let result = gem_client.chat().generate(parameters).await;
match result {
Ok(response) => strip_code_blocks(&response),
Err(_err) => {
let error_msg = "Failed to generate content via Gemini API.".to_string();
self.agent.add_communication(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
})
.await;
}
return Err(anyhow!(error_msg));
}
}
}
#[cfg(feature = "oai")]
ClientType::OpenAI(oai_client) if provider == "openai" => {
use openai_dive::v1::resources::chat::*;
use openai_dive::v1::resources::model::*;
let parameters = ChatCompletionParametersBuilder::default()
.model(FlagshipModel::Gpt4O.to_string())
.messages(vec![ChatMessage::User {
content: ChatMessageContent::Text(prompt.clone()),
name: None,
}])
.response_format(ChatCompletionResponseFormat::Text)
.build()?;
let result = oai_client.chat().create(parameters).await;
match result {
Ok(chat_response) => {
let message = &chat_response.choices[0].message;
let response_text = match message {
ChatMessage::Assistant {
content: Some(chat_content),
..
} => chat_content.to_string(),
ChatMessage::User { content, .. } => content.to_string(),
ChatMessage::System { content, .. } => content.to_string(),
ChatMessage::Developer { content, .. } => content.to_string(),
ChatMessage::Tool { content, .. } => content.clone(),
_ => String::from(""),
};
strip_code_blocks(&response_text)
}
Err(_err) => {
let error_msg = "Failed to generate content via OpenAI API.".to_string();
self.agent.add_communication(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
})
.await;
}
return Err(anyhow!(error_msg));
}
}
}
#[cfg(feature = "cld")]
ClientType::Anthropic(client) if provider == "claude" => {
let body = CreateMessageParams::new(RequiredMessageParams {
model: "claude-3-7-sonnet-latest".to_string(),
messages: vec![AnthMessage::new_text(Role::User, prompt.clone())],
max_tokens: 1024,
});
match client.create_message(Some(&body)).await {
Ok(chat_response) => {
let response_text = chat_response
.content
.iter()
.filter_map(|block| match block {
ContentBlock::Text { text, .. } => Some(text),
_ => None,
})
.cloned()
.collect::<Vec<_>>()
.join("\n");
strip_code_blocks(&response_text)
}
Err(_) => {
let error_msg = "Failed to generate content via Claude API.".to_string();
self.agent.add_communication(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("system"),
content: Cow::Owned(error_msg.clone()),
})
.await;
}
return Err(anyhow!(error_msg));
}
}
}
#[cfg(feature = "xai")]
ClientType::Xai(xai_client) => {
let messages = vec![XaiMessage {
role: "user".into(),
content: prompt.clone(),
}];
let rb = ChatCompletionsRequestBuilder::new(
xai_client.clone(),
"grok-beta".into(),
messages,
)
.temperature(0.0)
.stream(false);
let req = rb.clone().build()?;
let resp = rb.create_chat_completion(req).await;
match resp {
Ok(chat) => {
let response_text = chat.choices[0].message.content.clone();
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(response_text.clone()),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(response_text.clone()),
})
.await;
}
#[cfg(debug_assertions)]
debug!(
"[*] {:?}: Got XAI Output: {:?}",
self.agent.position(),
response_text
);
strip_code_blocks(&response_text)
}
Err(err) => {
let err_msg = format!("Failed to generate content via XAI API: {err}");
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(err_msg.clone()),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(err_msg.clone()),
})
.await;
}
return Err(anyhow!(err_msg));
}
}
}
#[allow(unreachable_patterns)]
_ => {
return Err(anyhow!(
"No valid AI client configured. Enable `gem`, `oai`, `cld`, or `xai` feature."
));
}
};
Ok(response)
}
/// Asynchronously executes the tasks described by the user request.
///
/// # Arguments
///
/// * `execute` - A boolean indicating whether to execute the tasks.
/// * `max_tries` - Maximum number of attempts to execute tasks.
///
/// # Returns
///
/// (`Result<()>`): Result indicating success or failure of task execution.
///
/// # Errors
///
/// Returns an error if there's a failure in executing tasks.
///
/// # Business Logic
///
/// - Executes tasks described by the user request using the collection of agents managed by the manager.
/// - Logs user request, system decisions, and assistant responses.
/// - Manages retries and error handling during task execution.
pub async fn execute(&mut self, execute: bool, browse: bool, max_tries: u64) -> Result<()> {
self.agent.add_communication(Communication {
role: Cow::Borrowed("user"),
content: Cow::Owned(format!(
"Execute tasks with description: '{}'",
self.tasks.description.clone()
)),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("user"),
content: Cow::Owned(format!(
"Execute tasks with description: '{}'",
self.tasks.description.clone()
)),
})
.await;
}
info!(
"{}",
format!(
"[*] {:?}: Executing task: {:?}",
self.agent.position(),
self.tasks.description.clone()
)
.bright_white()
.bold()
);
let language_request = format!(
"{}\n\nUser Request: {}",
LANGUAGE_MANAGER_PROMPT,
self.tasks.description.clone()
);
let framework_request = format!(
"{}\n\nUser Request: {}",
FRAMEWORK_MANAGER_PROMPT,
self.tasks.description.clone()
);
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(
"Analyzing user request to determine programming language and framework..."
.to_string(),
),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(
"Analyzing user request to determine programming language and framework..."
.to_string(),
),
})
.await;
}
let language = self.execute_prompt(language_request).await?;
let framework = self.execute_prompt(framework_request).await?;
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(format!(
"Identified Language: '{language}', Framework: '{framework}'"
)),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(format!(
"Identified Language: '{language}', Framework: '{framework}'"
)),
})
.await;
}
if self.agents.is_empty() {
self.spawn_default_agents().await;
self.agent.add_communication(Communication {
role: Cow::Borrowed("system"),
content: Cow::Borrowed("No agents were available. Spawned default agents."),
});
}
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("system"),
content: Cow::Borrowed("No agents were available. Spawned default agents."),
})
.await;
}
for mut agent in self.agents.clone() {
let request_prompt = format!(
"{}\n\n\n\nUser Request: {}\n\nAgent Role: {}\nProgramming Language: {}\nFramework: {}\n",
MANAGER_PROMPT,
self.tasks.description.clone(),
agent.position(),
language,
framework
);
let refined_task = self.execute_prompt(request_prompt).await?;
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(format!(
"Refined task for '{}': {}",
agent.position(),
refined_task
)),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Owned(format!(
"Refined task for '{}': {}",
agent.position(),
refined_task
)),
})
.await;
}
self.tasks = Task {
description: refined_task.into(),
scope: None,
urls: None,
frontend_code: None,
backend_code: None,
api_schema: None,
};
let _agent_res = agent
.execute(&mut self.tasks, execute, browse, max_tries)
.await;
}
self.agent.add_communication(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Borrowed("Task execution completed by all agents."),
});
#[cfg(feature = "mem")]
{
let _ = self
.save_ltm(Communication {
role: Cow::Borrowed("assistant"),
content: Cow::Borrowed("Task execution completed by all agents."),
})
.await;
}
info!(
"{}",
format!("[*] {:?}: Completed Task:", self.agent.position())
.bright_white()
.bold()
);
Ok(())
}
/// Saves a communication to long-term memory for the agent.
///
/// # Arguments
///
/// * `communication` - The communication to save, which contains the role and content.
///
/// # Returns
///
/// (`Result<()>`): Result indicating the success or failure of saving the communication.
///
/// # Business Logic
///
/// - This method uses the `save_long_term_memory` util function to save the communication into the agent's long-term memory.
/// - The communication is embedded and stored using the agent's unique ID as the namespace.
/// - It handles the embedding and metadata for the communication, ensuring it's stored correctly.
#[cfg(feature = "mem")]
async fn save_ltm(&mut self, communication: Communication) -> Result<()> {
save_long_term_memory(&mut self.client, self.agent.id.clone(), communication).await
}
/// Retrieves all communications stored in the agent's long-term memory.
///
/// # Returns
///
/// (`Result<Vec<Communication>>`): A result containing a vector of communications retrieved from the agent's long-term memory.
///
/// # Business Logic
///
/// - This method fetches the stored communications for the agent by interacting with the `load_long_term_memory` function.
/// - The function will return a list of communications that are indexed by the agent's unique ID.
/// - It handles the retrieval of the stored metadata and content for each communication.
#[cfg(feature = "mem")]
async fn get_ltm(&self) -> Result<Vec<Communication>> {
load_long_term_memory(self.agent.id.clone()).await
}
/// Retrieves the concatenated context of all communications in the agent's long-term memory.
///
/// # Returns
///
/// (`String`): A string containing the concatenated role and content of all communications stored in the agent's long-term memory.
///
/// # Business Logic
///
/// - This method calls the `long_term_memory_context` function to generate a string representation of the agent's entire long-term memory.
/// - The context string is composed of each communication's role and content, joined by new lines.
/// - It provides a quick overview of the agent's memory in a human-readable format.
#[cfg(feature = "mem")]
async fn ltm_context(&self) -> String {
long_term_memory_context(self.agent.id.clone()).await
}
}