feat: add new prompts and clean up bucket creation code
- Added CLI and IDE prompt files to the add-req.sh script - Removed unused bucket creation code from BotOrchestrator - Deleted unused create_bucket module from main.rs The changes streamline the codebase by removing unused bucket creation functionality while expanding the prompt file inclusion for better LLM context handling.
This commit is contained in:
parent
0e62b601da
commit
866aafcd76
3 changed files with 2 additions and 3 deletions
|
|
@ -8,6 +8,8 @@ echo "Consolidated LLM Context" > "$OUTPUT_FILE"
|
|||
|
||||
prompts=(
|
||||
"./prompts/dev/platform/shared.md"
|
||||
"./prompts/dev/platform/cli.md"
|
||||
"./prompts/dev/platform/ide.md"
|
||||
"./Cargo.toml"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -135,8 +135,6 @@ impl BotOrchestrator {
|
|||
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
|
||||
// TODO: Move logic to here after duplication refactor
|
||||
|
||||
let bucket_name = format!("{}.gbai", bot_name);
|
||||
crate::create_bucket::create_bucket(&bucket_name)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ mod tools;
|
|||
mod web_automation;
|
||||
mod web_server;
|
||||
mod whatsapp;
|
||||
mod create_bucket;
|
||||
|
||||
use crate::auth::auth_handler;
|
||||
use crate::automation::AutomationService;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue