mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
Merge remote-tracking branch 'substream/feat/gmail-fixes' into feat/dmg-cyrus
This commit is contained in:
+1
-1
@@ -22,7 +22,7 @@
|
||||
"android:build": "tauri android build",
|
||||
"test": "vitest run",
|
||||
"test:unit": "vitest run",
|
||||
"test:unit:watch": "vitest",
|
||||
"test:unit:watch": "vi13:17:20.609 ERROR [skill:gmail] start() failed: start() timed out after 30s\ntest",
|
||||
"test:watch": "vitest",
|
||||
"test:coverage": "vitest run --coverage",
|
||||
"test:rust": "source $HOME/.cargo/env 2>/dev/null; cargo test --manifest-path src-tauri/Cargo.toml",
|
||||
|
||||
@@ -338,7 +338,7 @@ async fn spawn_state_writer(
|
||||
_ = interval.tick() => {
|
||||
event_count += 1;
|
||||
if event_count % 12 == 1 { // Log every minute (12 * 5s = 60s)
|
||||
log::info!("[alphahuman] Health monitoring active (event #{})", event_count);
|
||||
// log::info!("[alphahuman] Health monitoring active (event #{})", event_count);
|
||||
}
|
||||
},
|
||||
_ = cancel.cancelled() => {
|
||||
|
||||
@@ -447,6 +447,7 @@ const Conversations = () => {
|
||||
toolArgs
|
||||
);
|
||||
const result = await skillManager.callTool(skillId, toolName, toolArgs);
|
||||
console.log(`[Conversations] tool "${toolName}" calling result:`, result);
|
||||
toolResultContent = result.content.map(c => c.text).join('\n');
|
||||
let toolReturnedError = result.isError;
|
||||
if (!toolReturnedError && toolResultContent) {
|
||||
|
||||
Reference in New Issue
Block a user