Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/commands/stdlib/llm_task_invoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ type CacheEntry = {
storedAt: string;
};

type Transport = 'clawd';

export const llmTaskInvokeCommand = {
name: 'llm_task.invoke',
meta: {
Expand Down Expand Up @@ -198,7 +196,6 @@ export const llmTaskInvokeCommand = {
const env = ctx.env ?? process.env;

const clawdUrl = String(env.CLAWD_URL ?? '').trim();
const transport: Transport = 'clawd';
if (!clawdUrl) {
throw new Error('llm_task.invoke requires CLAWD_URL (run via Clawdbot gateway)');
}
Expand Down