show fallback indicator in model dropdown, move agent logs to main, bump to 0.0.191

Made-with: Cursor
This commit is contained in:
Colin McDonnell
2026-04-03 19:00:52 +00:00
committed by pullfrog[bot]
parent 45fb07b34f
commit d525fc21be
6 changed files with 13 additions and 13 deletions
-5
View File
@@ -51,12 +51,7 @@ export const agent = (input: Agent): Agent => {
return {
...input,
run: async (ctx: AgentRunContext): Promise<AgentResult> => {
if (ctx.payload.model) log.info(`» model: ${ctx.payload.model}`);
if (ctx.payload.timeout) log.info(`» timeout: ${ctx.payload.timeout}`);
log.info(`» push: ${ctx.payload.push}`);
log.info(`» shell: ${ctx.payload.shell}`);
log.debug(`» payload: ${JSON.stringify(ctx.payload, null, 2)}`);
return input.run(ctx);
},
};