Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [6.7.3] - 2026-08-04

### Changed

- **Axon Eido 3 Flash is now paid at $0.5/M in and $1.5/M out.** The built-in
registry no longer marks `axon-eido-3-flash` as free; `inputPrice` and
`outputPrice` are updated to match the new MatterAI API pricing. Flash usage
now accrues session cost like the other Axon models.

## [6.7.2] - 2026-08-02

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ sessions.
| `axon-eido-3-code-pro-400k` | 400k | 64k | $3/M in · $9/M out |
| `axon-eido-3-code-mini-200k` | 200k | 64k | $1.5/M in · $4.5/M out |
| `axon-eido-3-code-mini-400k` | 400k | 64k | $1.5/M in · $4.5/M out |
| `axon-eido-3-flash` | 200k | 64k | free |
| `axon-eido-3-flash` | 200k | 64k | $0.5/M in · $1.5/M out |

`axon-eido-3-code-mini-200k` is the default. The context suffix controls
OrbCode's local context window; requests still send the underlying base model ID
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@matterailab/orbcode",
"version": "6.7.2",
"version": "6.7.3",
"description": "OrbCode CLI — agentic coding in your terminal, powered by Axon models by MatterAI",
"type": "module",
"bin": {
Expand Down
6 changes: 3 additions & 3 deletions src/api/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ export const BUILTIN_AXON_MODELS: Record<string, AxonModel> = {
contextWindow: 200000,
maxOutputTokens: 64000,
supportsImages: true,
inputPrice: 0.0,
outputPrice: 0.0,
free: true,
inputPrice: 0.0000005,
outputPrice: 0.0000015,
free: false,
},
"axon-eido-3-code-pro-200k": {
id: "axon-eido-3-code-pro-200k",
Expand Down
Loading