heyio 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -308,6 +308,13 @@ export async function initOrchestrator(copilotClient) {
|
|
|
308
308
|
catch (err) {
|
|
309
309
|
console.error("[io] Could not validate models:", err instanceof Error ? err.message : err);
|
|
310
310
|
}
|
|
311
|
+
// Log built-in tools for diagnostics
|
|
312
|
+
try {
|
|
313
|
+
const toolsList = await copilotClient.rpc.tools.list({});
|
|
314
|
+
const toolNames = toolsList.tools.map((t) => t.name);
|
|
315
|
+
console.error(`[io] Built-in tools: ${toolNames.join(", ")}`);
|
|
316
|
+
}
|
|
317
|
+
catch { /* non-fatal */ }
|
|
311
318
|
// Start health check timer
|
|
312
319
|
healthCheckTimer = setInterval(() => {
|
|
313
320
|
if (!client || client.getState() !== "connected") {
|