Skip to content

Commit 22171ef

Browse files
authored
Refactor agents and tools Modularize codebase by moving agents and tools to separate files. (#10)
Modularize codebase by moving agents and tools to separate files.
2 parents a65932d + b6e92b0 commit 22171ef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/target
22
.*
33
.idea
4+
.prompts_perssitense_cache

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ async fn main() -> Result<()> {
88
// create caching path
99
let cache_path = PathBuf::from("./.prompts_perssitense_cache");
1010
let scribe = RigScribe::new(cache_path);
11-
let id = ScopeId(2031);
11+
let id = ScopeId(2032);
1212
// Input: The raw, often vague user intent.
1313
let raw_prompt = "write a python fonction";
1414
eprintln!("\n\nOptimizing ...\n\n");

0 commit comments

Comments
 (0)