Commit Graph

42 Commits

Author SHA1 Message Date
ed 2666a3390d feat(ai): Harden tool access exclusion across all providers 2026-05-02 13:23:00 -04:00
ed 29dd6ec36d refactor(ai): Audit and cleanup ai_client.py and gemini_cli_adapter.py 2026-05-02 13:02:53 -04:00
ed 7ae0d13278 conductor(checkpoint): Checkpoint end of Phase 3 2026-05-02 12:18:27 -04:00
ed f4c5a0be83 feat(ai_client): Support external MCP tools and HITL approval 2026-03-12 15:58:36 -04:00
ed 09902701b4 feat(ui): AI Settings Overhaul - added dual sliders for model params including top_p 2026-03-11 20:22:06 -04:00
ed 94598b605a checkpoint dealing with personal manager/editor 2026-03-10 23:47:53 -04:00
ed cad04bfbfc feat(bias): implement ToolBiasEngine and integrate into ai_client orchestration loop 2026-03-10 09:53:59 -04:00
ed dcc13efaf7 chore(conductor): Mark track 'Saved Tool Presets' as complete 2026-03-10 01:23:57 -04:00
ed 8beb186aff fix 2026-03-08 03:38:52 -04:00
ed a65dff4b6d a test for a test 2026-03-07 22:29:08 -05:00
ed f655547184 fixees 2026-03-07 14:49:39 -05:00
ed 6ab359deda fixes 2026-03-07 14:39:40 -05:00
ed a856d73f95 ok 2026-03-07 14:25:03 -05:00
ed 91d7e2055f wip 2026-03-07 14:13:25 -05:00
ed aaed011d9e fixing latency bugs on gui thread 2026-03-07 14:05:57 -05:00
ed d71d82bafb docs(conductor): Synchronize docs for track 'GUI Performance Profiling & Optimization' 2026-03-07 13:20:12 -05:00
ed d7a6ba7e51 feat(ui): Enhanced context control with per-file flags and Gemini cache awareness 2026-03-07 12:13:08 -05:00
ed 0fae341d2f fix(ai_client): add patch_callback param to _send_gemini_cli signature 2026-03-07 01:28:07 -05:00
ed 90670b9671 feat(tier4): Integrate patch generation into GUI workflow
- Add patch_callback parameter throughout the tool execution chain
- Add _render_patch_modal() to gui_2.py with colored diff display
- Add patch modal state variables to App.__init__
- Add request_patch_from_tier4() to trigger patch generation
- Add run_tier4_patch_callback() to ai_client.py
- Update shell_runner to accept and execute patch_callback
- Diff colors: green for additions, red for deletions, cyan for headers
- 36 tests passing
2026-03-07 00:26:34 -05:00
ed c8e8cb3bf3 feat(tier4): Add patch generation for auto-patching
- Add TIER4_PATCH_PROMPT to mma_prompts.py with unified diff format
- Add run_tier4_patch_generation function to ai_client.py
- Import mma_prompts in ai_client.py
- Add unit tests for patch generation
2026-03-07 00:10:35 -05:00
ed bc606a8a8d fix: Add minimax to tool call execution handler 2026-03-06 23:51:17 -05:00
ed a47ea47839 temp: disable tools for minimax to debug API issues 2026-03-06 23:48:41 -05:00
ed 6cfe9697e0 fix: Use temperature=1.0 for MiniMax (required range is (0.0, 1.0]) 2026-03-06 23:46:17 -05:00
ed ce53f69ae0 fix: Use correct MiniMax API endpoint (api.minimax.io not api.minimax.chat) 2026-03-06 23:43:41 -05:00
ed af4b716a74 fix: Use absolute path for credentials.toml 2026-03-06 23:42:01 -05:00
ed b79c1fce3c feat(provider): Add MiniMax AI provider integration
- Add minimax to PROVIDERS lists in gui_2.py and app_controller.py
- Add minimax credentials template in ai_client.py
- Implement _list_minimax_models, _classify_minimax_error, _ensure_minimax_client
- Implement _send_minimax with streaming and reasoning support
- Add minimax to send(), list_models(), reset_session(), get_history_bleed_stats()
- Add unit tests in tests/test_minimax_provider.py
2026-03-06 23:36:30 -05:00
ed 12dba31c1d REGRESSSIOSSSOONNNNSSSS 2026-03-06 21:39:50 -05:00
ed f65e9b40b2 WIP: Regression hell 2026-03-06 21:22:21 -05:00
ed 4c92817928 fixing regresssions 2026-03-06 20:12:35 -05:00
ed 0e9f84f026 fixing 2026-03-06 19:54:52 -05:00
ed 9d5b874c66 fix(ai_client): Restore AI text capture and fix tool declaration in Gemini generation loop. 2026-03-06 13:47:22 -05:00
ed 87dbfc5958 feat(ai_client): Refactor tool dispatch to use asyncio.gather for parallel tool execution. 2026-03-06 13:14:27 -05:00
ed 684a6d1d3b feat(ai_client): isolation of current_tier using threading.local() for parallel agent safety 2026-03-06 12:59:18 -05:00
ed 84de6097e6 chore(conductor): Finalize track 'Robust JSON Parsing for Tech Lead' and cleanup static analysis 2026-03-06 12:36:24 -05:00
ed 03b68c9cea fix(ai_client): Add missing response_received events for gemini streaming and non-streaming paths 2026-03-05 19:21:57 -05:00
ed c0ccaebcc5 fix(ai_client): Use send_message_stream for google-genai streaming 2026-03-05 16:48:57 -05:00
ed 3d5773fa63 YET ANOTEHR BOTCHED TRACK. 2026-03-05 16:14:58 -05:00
ed 8784d05db4 WIP: PAIN3 2026-03-05 15:10:53 -05:00
ed 0e3b479bd6 WIP: PAIN 2026-03-05 14:24:03 -05:00
ed 5e69617f88 WIP: I HATE PYTHON 2026-03-05 13:55:40 -05:00
ed 35480a26dc test(audit): fix critical test suite deadlocks and write exhaustive architectural report
- Fix 'Triple Bingo' history synchronization explosion during streaming

- Implement stateless event buffering in ApiHookClient to prevent dropped events

- Ensure 'tool_execution' events emit consistently across all LLM providers

- Add hard timeouts to all background thread wait() conditions

- Add thorough teardown cleanup to conftest.py's reset_ai_client fixture

- Write highly detailed report_gemini.md exposing asyncio lifecycle flaws
2026-03-05 01:42:47 -05:00
ed a0276e0894 feat(src): Move core implementation files to src/ directory 2026-03-04 09:55:44 -05:00