Skip to content

Tags: feiskyer/koder

Tags

v0.5.3

Toggle v0.5.3's commit message
chore: bump dependencies

v0.5.2

Toggle v0.5.2's commit message
chore: bump version to 0.5.2

v0.5.1

Toggle v0.5.1's commit message
feat: add initial support for sandbox

v0.5.0

Toggle v0.5.0's commit message
feat: agent harness

v0.4.13

Toggle v0.4.13's commit message
fix: fix the antigravity auth issues and cleanup codes

1) Refered some logic from opencode-antigravity-auth for how to handle
   antigravity oauth correctly.
2) Split the large oauth file into modules and move into their own
   component

v0.4.12

Toggle v0.4.12's commit message
chore: bump depdencies and code cleanup

v0.4.11

Toggle v0.4.11's commit message
feat: add KODER_API_KEY/KODER_BASE_URL overrides and fix OAuth vs API…

… provider mapping

v0.4.10

Toggle v0.4.10's commit message
chore: refine model list output formats

v0.4.9

Toggle v0.4.9's commit message
feat: add oauth providers google/claude/chatgpt/antigravitiy so that …

…existing subscriptions on them could be re-used with koder

v0.4.8

Toggle v0.4.8's commit message
fix: token stats fallback estimation and model cost lookup

1. Add tiktoken fallback in _capture_usage when API returns no usage:
   - Estimate output tokens from result.final_output
   - Estimate input/context tokens from session history
   - Reuse session's existing _estimate_tokens method (no duplicate code)

2. Add dot-to-hyphen model name variants for litellm cost lookup:
   - Models like "claude-opus-4.5" now find "claude-opus-4-5" in litellm

3. Add comprehensive tests for all modified logic