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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ GitHub Releases page; `0.8.0` is the new starting line.
## Unreleased

- Freeze the public shell prompt compatibility contract with constructor and rendering coverage.
- Keep the interactive prompt scene within the terminal height with a priority-ordered row allocator, and shut prompt background tasks/processes down with an awaited lifecycle.
- Add xAI Grok OAuth login (browser loopback and device-code).
- Add GitHub Copilot device-code OAuth login for individual github.com accounts.
- Add DigitalOcean Gradient AI browser OAuth login with dynamically discovered Inference Routers; router-discovery failures (unauthorized, outage, malformed, empty) are now reported distinctly instead of silently yielding no models.
Expand Down
2 changes: 1 addition & 1 deletion src/pythinker_code/ui/shell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ def _bg_task_counts() -> BgTaskCounts:
_bg_cache.time = now
return _bg_cache.counts

with CustomPromptSession(
async with CustomPromptSession(
status_provider=lambda: self.soul.status,
status_block_provider=_mcp_status_block,
fast_refresh_provider=_mcp_status_loading,
Expand Down
Loading
Loading