You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Model has no AI credits pricing: The agent failed because model qwen2.5:0.5b is not in the built-in pricing table and no default fallback pricing is configured. The AWF API proxy rejected every inference request with HTTP 400.
This is a configuration issue — retrying will not help. The model must have pricing before the workflow can run.
How to fix this
Option 1 — Add pricing in the workflow frontmatter:
models:
providers:
github-copilot:
models:
'qwen2.5:0.5b':
cost:
# Placeholder values — replace with actual pricing for this modelinput: "0e0"# $0.00 per million input tokensoutput: "0e0"# $0.00 per million output tokenscache_read: "0e0"# $0.00 per million cache-read tokenscache_write: "0e0"# $0.00 per million cache-write tokens
Use the provider key matching your engine: github-copilot (Copilot), anthropic (Claude), openai (Codex), or google (Gemini). Only input and output are required; the rest default to zero (or output for reasoning).
Option 2 — Map the model to a known model using the models field:
If qwen2.5:0.5b is an alias for a model already in the built-in pricing table, use the models frontmatter field to provide the mapping:
models:
'qwen2.5:0.5b':
- claude-sonnet-4-5
Option 3 — Switch to a model already in the built-in pricing table:
Replace qwen2.5:0.5b in the workflow frontmatter with a model name that the AWF pricing system recognizes (e.g. claude-sonnet-4-5, gpt-4.1, gemini-2.0-flash).
Action Required
Assign this issue to an agent to debug and fix the issue.
Debug with any coding agent
Use this prompt with any coding agent (GitHub Copilot, Claude, Gemini, etc.):
Debug the agentic workflow failure using https://raw.githubusercontent.com/github/gh-aw/main/debug.md
The failed workflow run is at https://github.com/github/gh-aw/actions/runs/30496744608
Manually invoke the agent
Debug this workflow failure using your favorite Agent CLI and the agentic-workflows prompt.
Workflow Failure
Workflow: Daily BYOK Ollama Test
Branch: main
Run: https://github.com/github/gh-aw/actions/runs/30496744608
Warning
Model has no AI credits pricing: The agent failed because model
qwen2.5:0.5bis not in the built-in pricing table and no default fallback pricing is configured. The AWF API proxy rejected every inference request with HTTP 400.This is a configuration issue — retrying will not help. The model must have pricing before the workflow can run.
How to fix this
Option 1 — Add pricing in the workflow frontmatter:
Use the provider key matching your engine:
github-copilot(Copilot),anthropic(Claude),openai(Codex), orgoogle(Gemini). Onlyinputandoutputare required; the rest default to zero (oroutputforreasoning).Option 2 — Map the model to a known model using the
modelsfield:If
qwen2.5:0.5bis an alias for a model already in the built-in pricing table, use themodelsfrontmatter field to provide the mapping:Option 3 — Switch to a model already in the built-in pricing table:
Replace
qwen2.5:0.5bin the workflow frontmatter with a model name that the AWF pricing system recognizes (e.g.claude-sonnet-4-5,gpt-4.1,gemini-2.0-flash).Action Required
Assign this issue to an agent to debug and fix the issue.
Debug with any coding agent
Use this prompt with any coding agent (GitHub Copilot, Claude, Gemini, etc.):
Manually invoke the agent
Debug this workflow failure using your favorite Agent CLI and the
agentic-workflowsprompt.agentic-workflowsskill from.github/skills/agentic-workflows/SKILL.mdor https://github.com/github/gh-aw/blob/main/.github/skills/agentic-workflows/SKILL.mddebug the agentic workflow daily-byok-ollama-test failure in https://github.com/github/gh-aw/actions/runs/30496744608Tip
Stop reporting this workflow as a failure
To stop a workflow from creating failure issues, set
report-failure-as-issue: falsein its frontmatter: