web: pretty tool cards — args rendered as the real command/path (priority keys, label-less single field), output label; 276 tests green
This commit is contained in:
@@ -74,7 +74,9 @@ try {
|
||||
const models = await runtime.getAvailable(provider);
|
||||
const found = models.find((m) => m.id === modelId);
|
||||
if (found === undefined) {
|
||||
console.error(`[lvmh-bridge] LVMH_MODEL ${requested} not found; using default`);
|
||||
console.error(
|
||||
`[lvmh-bridge] LVMH_MODEL ${requested} not found; using default`,
|
||||
);
|
||||
} else {
|
||||
model = found;
|
||||
console.error(`[lvmh-bridge] initial model: ${requested}`);
|
||||
@@ -83,7 +85,9 @@ try {
|
||||
console.error(`[lvmh-bridge] model resolution failed:`, err);
|
||||
}
|
||||
}
|
||||
const { session } = await createAgentSession(model === undefined ? {} : { model });
|
||||
const { session } = await createAgentSession(
|
||||
model === undefined ? {} : { model },
|
||||
);
|
||||
// SDK does not bind extensions implicitly (unlike TUI/RPC modes); without
|
||||
// bindExtensions the session_start event never fires, so the lvmh plugin
|
||||
// would never dial the daemon.
|
||||
|
||||
Reference in New Issue
Block a user