Commit Graph

87 Commits

Author SHA1 Message Date
d8aed7befe
tool: add execution context 2026-06-09 19:31:11 +09:00
960f2a305e
fix: account hook system item appends 2026-06-05 11:17:16 +09:00
abb6adb5d2
fix: preserve openai reasoning live stops 2026-06-03 11:08:06 +09:00
42066f1e00
fix: unify reasoning block persistence 2026-06-03 10:11:59 +09:00
cc98c0eb28
fix: wire tui word navigation 2026-06-03 09:22:50 +09:00
9dcbd4c3e0
docs: reorganize developer documentation 2026-06-01 20:59:32 +09:00
e6c458021c
rename: adopt yoi identity 2026-06-01 18:49:23 +09:00
342f194c87
fix: avoid projecting token measurements past latest usage 2026-06-01 17:29:58 +09:00
375d0216d1
fix: correct prompt occupancy extrapolation 2026-06-01 09:52:39 +09:00
a47f2c4689
fix: preserve terminal turn failures 2026-05-30 09:02:11 +09:00
27b1891f1c
fix: omit responses reasoning context 2026-05-29 17:07:28 +09:00
8ed5939ebb
fix: preserve responses reasoning history 2026-05-29 16:54:11 +09:00
b870a77a55
fix: guard responses reasoning context 2026-05-29 16:11:37 +09:00
11d1dcffb6 merge: main trace diagnostics 2026-05-28 12:32:24 +09:00
9a92443269 trace: llm stream open diagnostics 2026-05-28 12:26:14 +09:00
c274e4a891 feat: bound compact worker context 2026-05-28 11:59:41 +09:00
60b9cb169a fix: trace unhandled openai responses sse 2026-05-28 05:18:57 +09:00
c1a724aedf fix: preserve openai responses incomplete diagnostics 2026-05-28 03:22:53 +09:00
9cd776eaec fix: add llm request lifecycle timeouts 2026-05-28 02:42:31 +09:00
876d75a747 fix: align codex oauth wire behavior 2026-05-28 01:57:04 +09:00
8416533695 feat: trace pre-stream lifecycle 2026-05-26 21:05:45 +09:00
372a99bc0b feat: add session stream event trace flag 2026-05-26 19:57:47 +09:00
be753099ae feat: surface llm retry and continuation state 2026-05-26 07:13:59 +09:00
65c399e6d9 fix: route worker history appends through callbacks 2026-05-24 06:44:19 +09:00
9ee7f04805 feat: protect prune tail by token budget 2026-05-23 05:00:06 +09:00
22f5d02385 update: SessionId / SessionStart / SessionOrigin 等を Segment 系名称へ
- Type/Function/Variantを Segment* 系へ統一
  - SessionId/SessionStart/SessionOrigin/SessionStartState/SessionState/SessionLogSink/SessionLockInfo
  - new_session_id / session_id / create_session* / list_sessions / lookup_session / update_session / find_by_session
  - protocol Event::SessionRotated → SegmentRotated、CompactDone.new_session_id → new_segment_id
- Module: session_log → segment_log / session → segment (file mv 含む)
  pod 側の session_log_sink → segment_log_sink も同様
- crate 名 (session-store)、CLI flag (--session)、ResumeWithSession (CLI tied) は据え置き
- session-tests/session_metrics_test 等の Store impl も追従
2026-05-20 05:06:04 +09:00
79b8336a14 feat: Invoke marker と LlmCall callback を導入し AgentTurn セマンティクスを明確化
- protocol: InvokeKind enum、Event::InvokeStart / LlmCallStart / LlmCallEnd 追加
- llm-worker: Worker.llm_call_count と on_llm_call_start/end callback、turn_count を AgentTurn 数として doc 更新
- session-store: LogEntry::Invoke { ts, trigger } 追加 (replay は marker のみで state 不変)
- pod: run/run_for_notification 開始時に Invoke marker commit、PendingRun::RunForNotification(InvokeKind) で kind を伝搬
- pod ipc: sink + server で Invoke エントリーを Event::InvokeStart として broadcast
- tui: 新 Event 3種を no-op で受理 (UI 設計はチケット範囲外)
2026-05-15 07:04:26 +09:00
e7064878c2 refactor: Podのメインループのリファクタリング 2026-05-14 03:27:49 +09:00
1803b0cf67 update: fmt + memoryに用いる言語の構成 2026-05-13 01:57:04 +09:00
cfb7f09e38 fix: bundle anthropic assistant bursts 2026-05-11 22:22:36 +09:00
eb9a67decc fix: remove remaining memory phase wording 2026-05-11 01:57:39 +09:00
60144c550a feat: パターンベースのツール権限制御を追加 2026-05-09 03:20:02 +09:00
5acb0d4d85 fix: Reasoningの永続化のスキーマのミスを修正 2026-05-05 12:30:29 +09:00
75c573fed1 update: Reasoningコンテキスト管理のレビュー・対応 2026-05-04 23:05:08 +09:00
594671edc3 feat: Reasoningのコンテキスト管理の対応 2026-05-04 21:31:44 +09:00
954cf200e2 feat: Pos処理の非同期化・Busy状態の削除 2026-05-04 15:52:27 +09:00
19df6340cd feat(llm-worker): HTTP transient エラーへのリトライを追加
`transport.rs` の HTTP 送信〜ステータスチェック区間に指数バックオフ
+ フルジッターのリトライループを追加する。SSE 読み出し開始後 (
`bytes_stream()` 以降) のエラーは従来どおりそのまま流す。

- `is_retryable(&ClientError)`: 408/425/429/500/502/503/504/529 と
  reqwest の connect/timeout のみ true
- `RetryPolicy` (default: base 500ms / cap 10s / max_attempts 4 /
  total_timeout 30s)
- `Retry-After` ヘッダ (秒数) があればバックオフを上書き
- リトライ発火ごとに warn! でステータス・attempt・wait を出す

ref: tickets/llm-worker-transient-retry.md
2026-05-04 12:45:33 +09:00
a0e1583916 feat: システムメッセージをTUIで表示させる 2026-05-04 12:04:09 +09:00
9e58149dda feat: notify-history-persist実装 2026-05-03 19:27:22 +09:00
70c4f1930e feat: session-metrics実装 2026-05-03 15:10:43 +09:00
81ff4c6073 update: codexのキャッシュ利用が出来てなかった問題 2026-05-02 03:23:44 +09:00
573501e37c fix(llm-worker): openai_responsesのroleの最新の投影を反映 2026-05-01 23:55:26 +09:00
99dc94416b chore: 依存パッケージの集約 2026-05-01 23:35:46 +09:00
d7bc7ab3dd ファイル参照を与えた際に自動的に読ませる実装 2026-04-30 21:58:10 +09:00
f31c58dccd cargo fmt 2026-04-29 23:20:25 +09:00
3fc65e6f6b templatureがcodexエンドポイントで使えない件の修正 2026-04-29 23:20:16 +09:00
ce4c0930c3 max_tokensのスキーマ不整合に関する修正 2026-04-28 17:58:24 +09:00
cf4c454a03 TUIにThinkingを表示する実装 2026-04-28 16:10:48 +09:00
6fe19b84ce セッション関連の責務の分離 2026-04-28 15:43:34 +09:00
7a0ed7d744 cargo fmt 2026-04-27 22:51:07 +09:00