diff --git a/chrs-agent/src/lib.rs b/chrs-agent/src/lib.rs index c4f37f51..25b856c5 100644 --- a/chrs-agent/src/lib.rs +++ b/chrs-agent/src/lib.rs @@ -11,6 +11,7 @@ use chrs_discovery::{SwarmManager, BusHandle, BusMessage}; use chrs_election::ElectionManager; use chrono::{Utc, DateTime}; use std::path::Path; +use std::process::Command; use std::time::Duration; use tokio::time::sleep; use tokio::sync::mpsc; @@ -122,25 +123,48 @@ impl CHORUSAgent { }); let _ = self.graph.insert_node("api_call_log", log_entry); - // 3. Perform the actual API call (simulated opencode call for now) - // If the command returned an exit code indicating rate limit (e.g. 429) - let success = true; + // 3. Perform the actual API call to opencode + let output = Command::new("opencode") + .args(&[ + "run", + "-m", "resetdata/openai/gpt-oss-120b", + &format!("{} \n\n Task: {}", self.system_prompt, message) + ]) + .output(); - if success { - let _ = self.graph.commit(&format!("API Call Success: {}", call_id)); - return format!("Reasoning based on: {}", self.system_prompt); - } else { - attempts += 1; - if attempts >= max_attempts { - return "Error: Maximum thinking attempts reached.".into(); + match output { + Ok(out) if out.status.success() => { + let reasoning = String::from_utf8_lossy(&out.stdout).trim().to_string(); + let _ = self.graph.insert_node("api_call_log", serde_json::json!({ + "id": Uuid::new_v4().to_string(), + "agent_id": self.id, + "called_at": Utc::now().to_rfc3339(), + "status": "success" + })); + let _ = self.graph.commit(&format!("API Call Success: {}", call_id)); + return reasoning; } + _ => { + attempts += 1; + let error_msg = if let Ok(out) = output { + String::from_utf8_lossy(&out.stderr).to_string() + } else { + "Failed to execute opencode".to_string() + }; + + println!("[AGENT {}] API Call failed (Attempt {}): {}", self.id, attempts, error_msg); + + if attempts >= max_attempts { + return format!("Error: Maximum thinking attempts reached. Last error: {}", error_msg); + } - // 4. Jittered Exponential Backoff - let jitter = rand::thread_rng().gen_range(0..1000); - let delay = base_delay.mul_f64(2.0_f64.powi(attempts - 1)) + Duration::from_millis(jitter); - - println!("[AGENT {}] Rate limit hit. Backing off for {:?}...", self.id, delay); - sleep(delay).await; + // 4. Jittered Exponential Backoff + let jitter = rand::thread_rng().gen_range(0..1000); + let delay = base_delay.mul_f64(2.0_f64.powi(attempts - 1)) + Duration::from_millis(jitter); + + println!("[AGENT {}] Backing off for {:?}...", self.id, delay); + sleep(delay).await; + } } } } diff --git a/target/debug/deps/libchrs_agent-e5ada5660303240e.rmeta b/target/debug/deps/libchrs_agent-e5ada5660303240e.rmeta index 1e9e2135..abd0b06d 100644 Binary files a/target/debug/deps/libchrs_agent-e5ada5660303240e.rmeta and b/target/debug/deps/libchrs_agent-e5ada5660303240e.rmeta differ diff --git a/target/debug/deps/libchrs_backbeat-ba7991949db54614.rmeta b/target/debug/deps/libchrs_backbeat-ba7991949db54614.rmeta index 6a869af4..27a2d2fd 100644 Binary files a/target/debug/deps/libchrs_backbeat-ba7991949db54614.rmeta and b/target/debug/deps/libchrs_backbeat-ba7991949db54614.rmeta differ diff --git a/target/debug/deps/libchrs_council-4ba324da3894163b.rmeta b/target/debug/deps/libchrs_council-4ba324da3894163b.rmeta index d648e998..9609f9dc 100644 Binary files a/target/debug/deps/libchrs_council-4ba324da3894163b.rmeta and b/target/debug/deps/libchrs_council-4ba324da3894163b.rmeta differ diff --git a/target/debug/deps/libchrs_election-27210636301b08fc.rmeta b/target/debug/deps/libchrs_election-27210636301b08fc.rmeta index 15a8dcfd..b0aa98e7 100644 Binary files a/target/debug/deps/libchrs_election-27210636301b08fc.rmeta and b/target/debug/deps/libchrs_election-27210636301b08fc.rmeta differ diff --git a/target/debug/deps/libchrs_mail-016d793c02d13fa1.rmeta b/target/debug/deps/libchrs_mail-016d793c02d13fa1.rmeta index bb3fd6fa..d411428d 100644 Binary files a/target/debug/deps/libchrs_mail-016d793c02d13fa1.rmeta and b/target/debug/deps/libchrs_mail-016d793c02d13fa1.rmeta differ diff --git a/target/debug/deps/libchrs_prompts-d34e1e14745f037e.rmeta b/target/debug/deps/libchrs_prompts-d34e1e14745f037e.rmeta index 75a5f3ae..12a54d2d 100644 Binary files a/target/debug/deps/libchrs_prompts-d34e1e14745f037e.rmeta and b/target/debug/deps/libchrs_prompts-d34e1e14745f037e.rmeta differ diff --git a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/dep-graph.bin b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/dep-graph.bin deleted file mode 100644 index 8f439c79..00000000 Binary files a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/dep-graph.bin b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/dep-graph.bin new file mode 100644 index 00000000..817c03f1 Binary files /dev/null and b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/query-cache.bin b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/query-cache.bin similarity index 91% rename from target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/query-cache.bin rename to target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/query-cache.bin index a79c86c0..2fc0d9c1 100644 Binary files a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/query-cache.bin and b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/query-cache.bin differ diff --git a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/work-products.bin b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0-2vu88iem9pxpggwo525v0epah/work-products.bin rename to target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e-c8b8syw5xgf3mrgv2jog6ziqp/work-products.bin diff --git a/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0.lock b/target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e.lock similarity index 100% rename from target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbnpos968-10mpby0.lock rename to target/debug/incremental/chrs_agent-1bka6zppc4dmz/s-hgbrfz5yhn-175ix2e.lock diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/dep-graph.bin b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/dep-graph.bin deleted file mode 100644 index ccd783de..00000000 Binary files a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/query-cache.bin b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/query-cache.bin deleted file mode 100644 index f696e5ff..00000000 Binary files a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/query-cache.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/dep-graph.bin b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/dep-graph.bin new file mode 100644 index 00000000..ca18ffd0 Binary files /dev/null and b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/query-cache.bin b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/query-cache.bin new file mode 100644 index 00000000..1873897f Binary files /dev/null and b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/query-cache.bin differ diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/work-products.bin b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr-5emw54kzgc5ot36h8whofhxwj/work-products.bin rename to target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto-7wia2kd5slbsgnrsa2puym1gi/work-products.bin diff --git a/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr.lock b/target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto.lock similarity index 100% rename from target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbr348t6u-0s8bjfr.lock rename to target/debug/incremental/chrs_agent-3eokistbxz3wj/s-hgbrfz2ri8-0kz4yto.lock diff --git a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/dep-graph.bin b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/dep-graph.bin similarity index 84% rename from target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/dep-graph.bin rename to target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/dep-graph.bin index 7e36aed5..2b74663f 100644 Binary files a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/dep-graph.bin and b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/query-cache.bin b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/query-cache.bin similarity index 89% rename from target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/query-cache.bin rename to target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/query-cache.bin index 9702b6f6..6a1d588e 100644 Binary files a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/query-cache.bin and b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/query-cache.bin differ diff --git a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/work-products.bin b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6-0nreiq9fk5r3j77cx9qgc6t7o/work-products.bin rename to target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k-emcdxqxc9tvpaq691qt6ipaf3/work-products.bin diff --git a/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6.lock b/target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k.lock similarity index 100% rename from target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbr346hxy-0wct3h6.lock rename to target/debug/incremental/chrs_backbeat-0evu406plqthr/s-hgbrfyzki1-0ei4r6k.lock diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/dep-graph.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin similarity index 83% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/dep-graph.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin index d0da18b0..e4293af3 100644 Binary files a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/dep-graph.bin and b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/query-cache.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin similarity index 87% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/query-cache.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin index c8b58f9f..812aeb4b 100644 Binary files a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/query-cache.bin and b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/query-cache.bin differ diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/work-products.bin b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo-ckm43wt6jq1vjdztrwoc0avb4/work-products.bin rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i-b32n30jhr1i6un09wogtcwmkv/work-products.bin diff --git a/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo.lock b/target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i.lock similarity index 100% rename from target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbh6vtqgr-0vps4jo.lock rename to target/debug/incremental/chrs_council-3rpj6bb2teys1/s-hgbrfyzkj7-17h8r7i.lock diff --git a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/dep-graph.bin b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/dep-graph.bin similarity index 99% rename from target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/dep-graph.bin rename to target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/dep-graph.bin index b85f1c4e..aec97701 100644 Binary files a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/dep-graph.bin and b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/query-cache.bin b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/query-cache.bin similarity index 98% rename from target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/query-cache.bin rename to target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/query-cache.bin index 2f7dade6..7e99d9d1 100644 Binary files a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/query-cache.bin and b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/query-cache.bin differ diff --git a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/work-products.bin b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3-944zni6qgm57djmwxr8qr84aa/work-products.bin rename to target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e-944zni6qgm57djmwxr8qr84aa/work-products.bin diff --git a/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3.lock b/target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e.lock similarity index 100% rename from target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbr346ifx-1lzo6a3.lock rename to target/debug/incremental/chrs_election-2b17dp9i0lehq/s-hgbrfz0wvh-0ckim4e.lock diff --git a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/dep-graph.bin b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/dep-graph.bin deleted file mode 100644 index ecd460c8..00000000 Binary files a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/dep-graph.bin and /dev/null differ diff --git a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/dep-graph.bin b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/dep-graph.bin new file mode 100644 index 00000000..de62b802 Binary files /dev/null and b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/query-cache.bin b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/query-cache.bin similarity index 80% rename from target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/query-cache.bin rename to target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/query-cache.bin index 3555a548..2197127a 100644 Binary files a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/query-cache.bin and b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/query-cache.bin differ diff --git a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/work-products.bin b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on-3z6xo3gwlaz2tcmf010n9yloz/work-products.bin rename to target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi-a8z20ig5f4c6afzr5es7stgua/work-products.bin diff --git a/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on.lock b/target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi.lock similarity index 100% rename from target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbh6vrolt-0ty72on.lock rename to target/debug/incremental/chrs_mail-2h5vf7bq0l8f2/s-hgbrfyy5lq-1c8kdpi.lock diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/dep-graph.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin similarity index 99% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/dep-graph.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin index 60b93970..0fd536c7 100644 Binary files a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/dep-graph.bin and b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/dep-graph.bin differ diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/query-cache.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/query-cache.bin similarity index 80% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/query-cache.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/query-cache.bin index cd7c09ed..c86db2c1 100644 Binary files a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/query-cache.bin and b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/query-cache.bin differ diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/work-products.bin b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/work-products.bin similarity index 100% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2-6hopa2ser3zjcxjru5ndnpy35/work-products.bin rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx-1hg9pu049gbzk22l9c3594qlg/work-products.bin diff --git a/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2.lock b/target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx.lock similarity index 100% rename from target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbh6vvpry-09e08a2.lock rename to target/debug/incremental/chrs_prompts-1s3ige9joa1du/s-hgbrfz0vez-0vconjx.lock