openagentry

LLM · Error

E_LLM_CLI_TIMEOUT

The CLI subprocess exceeded its timeout.

Package
@openagentry/adapter-llm-cli
Category
llm

— · Resolution

How to recover

Increase `timeoutMs` in the call, or check that the CLI isn't blocked on an interactive prompt.

— · The shape

What an instance looks like

throw new AgentryError({
  code: 'E_LLM_CLI_TIMEOUT',
  phase: 'init',
  message: '…contextual message…',
  context: { /* adapter-specific */ },
  suggestedFix: 'Increase `timeoutMs` in the call, or check that the CLI isn\'t blocked on an interactive prompt.',
  docs: 'https://openagentry.dev/errors/E_LLM_CLI_TIMEOUT',
});

The context field carries adapter-specific detail (HTTP status, missing env-var names, validation issues). It never contains secret values.


— · See also

Related codes from @openagentry/adapter-llm-cli