Skip to content

Experimental Native Protocol Rewrite - #162

Open
Mirrowel wants to merge 203 commits into
devfrom
experimental
Open

Experimental Native Protocol Rewrite#162
Mirrowel wants to merge 203 commits into
devfrom
experimental

Conversation

@Mirrowel

Copy link
Copy Markdown
Owner

Experimental Native Protocol Roadmap

This branch is for a long-running experimental rewrite that makes native protocol support the first-class extension point of rotator_library, while preserving the existing credential rotation, quota, fair-cycle, session tracking, and provider plugin strengths.

Operating Rules

  • Work only on the experimental branch.
  • Keep all repository work inside C:\Projects\test\LLM-API-Key-Proxy and child paths.
  • Treat commits as checkpoints. A phase may contain many commits.
  • Commit messages must include a body describing what changed, why, tests run, and follow-up considerations.
  • Do not commit phase reports written for the user unless explicitly requested. Planning docs under docs/experimental/ are committed.
  • Before each phase implementation, first produce a fresh exhaustive phase plan in conversation text, based on the current code state. Only after that plan is settled should it be written to docs/experimental/phase-N-*.md.
  • After each phase implementation, call both explore and explore-heavy agents to review the work against the phase plan, external reference areas, and current proxy behavior. Fix findings and re-review as needed.
  • Keep LiteLLM as a fallback path for protocols/providers that are not natively covered yet. Native protocol support should be preferred when available.

Strategic Goal

The target architecture is:

client API request
  -> protocol parse into unified representation
  -> field-cache injection
  -> adapter chain
  -> provider override hooks
  -> provider-native request build
  -> provider execution and credential rotation
  -> provider-native response/stream parse
  -> field-cache extraction
  -> adapter chain
  -> protocol formatting for the client
  -> transaction logging for every transform state

Providers should be able to declare an existing protocol and only override the parts that are genuinely provider-specific. A custom provider should usually be configurable through protocol choice, adapters, field-cache rules, auth strategy, and model options rather than requiring a large bespoke provider implementation.

Priority Order

  1. Native protocol foundations, unified types, transformers, adapters, and field-cache rules.
  2. OpenAI Responses API support, including future WebSocket extension points.
  3. Provider work following the protocol layer: Claude Code, Codex, Copilot, Antigravity, and Gemini CLI parity review.
  4. Routing and fallback groups, with optional target-group selectors later.
  5. Retry, provider/model cooldown, and failover cleanup.
  6. Protocol-aware quota, usage, and cost normalization.
  7. Streaming library hardening: SSE now, WebSocket-ready later.
  8. Config polish using .env and optional JSON. No SQLite dependency for now.
  9. Extensive staged tests and review-agent verification.

Non-Goals For This Branch

  • Do not make the proxy a full multi-user admin product yet.
  • Do not require SQLite or Postgres for the main feature set.
  • Do not remove LiteLLM before native coverage exists.
  • Do not replace the existing UsageManager, fair-cycle, custom caps, or evidence-based SessionTracker.
  • Do not port frontend/UI work from the external reference gateway.

Current Strengths To Preserve

  • Credential-level rotation and priority-aware selection.
  • Fair cycle and custom caps.
  • Windowed quota tracking and quota groups.
  • Evidence-based session tracking with compaction handling.
  • Provider plugin discovery.
  • Gemini CLI provider behavior unless a reviewed change is clearly better.
  • Resilient file/JSON state writing.
  • Dynamic OpenAI-compatible provider discovery.

Reference Gateway Ideas To Import Carefully

  • Unified protocol/transformer style.
  • Adapter registry and configurable provider/model adapters.
  • Target groups and direct routing syntax, adapted into fallback-first routing.
  • Responses API transformer and storage concepts.
  • Stream TTFB/stall detection concepts, implemented with Python-native async primitives.
  • Provider/model cooldown and retry-history concepts.
  • Usage/cost normalization and provider-reported cost extraction.
  • Broader provider support patterns for Claude Code, Codex, Copilot, and Antigravity.

Phase Index

  1. Protocol Core.
  2. Transform Pass Logging.
  3. Adapter and Field Cache System.
  4. Responses API and WebSocket-Ready Transport Shape.
  5. Provider Protocol Overhaul.
  6. Routing and Fallback Groups.
  7. Retry/Cooldown/Failover Cleanup.
  8. Streaming Library Upgrade.
  9. Usage, Quota, and Cost Accuracy.
  10. Config Polish.

Each phase may be subdivided if implementation scope becomes too large.

Completeness Matrix

This matrix exists so the branch does not lose any requested scope while phases evolve. The phase plans are still refreshed before implementation, but every item below must remain accounted for.

Requested area Planned coverage
Protocols are priority #1 Phases 1 and 4 create native protocol foundations and Responses support before provider work.
Protocols are bases, not gospel Phase 1 requires override-friendly protocol methods, subclassing, copy/mutate registration, and provider-specific overrides.
Move away from LiteLLM Phase 1 adds a litellm_fallback protocol path; later providers should prefer native protocols and use LiteLLM only for unsupported coverage.
Add protocols automatically like providers Phase 1 adds protocol auto-discovery and registry behavior modeled after provider discovery.
Cover current providers and reference providers Phase 1 protocols must cover shapes used by current providers; Phase 5 covers Claude Code, Codex, Copilot, Antigravity, and Gemini CLI parity.
Responses API is very needed Phase 4 is dedicated to Responses, previous_response_id, storage, SSE, and WebSocket-ready transport shape.
WebSocket support later Phases 1, 4, and 8 require transport separation so WebSocket can be added without rewriting protocol logic.
Adapters/transformers tied to protocols Phases 1, 2, and 3 define protocol parse/build plus transform tracing, adapter registry, and field-cache rules.
Cache and return provider fields Phase 3 implements configurable extraction/injection rules for request, response, and stream fields with scope and mode controls.
Reasoning content and similar fields Phase 3 explicitly covers reasoning content, thinking signatures, prompt cache keys, response IDs, and provider session IDs.
Return all possible or last user/assistant use Phase 3 modes include last, all, last_user_turn, last_assistant_turn, and per_tool_call.
Per-model custom provider behavior Phases 3, 5, and 10 cover provider/model field cache rules, adapters, model options, and optional JSON config.
Transaction logging after every transform Phase 2 adds ordered request, response, and stream transform trace passes and integrates them with transaction logging.
Comments, docstrings, and key decisions All implementation phases require docstrings for public abstractions and comments for non-obvious transform, protocol, and future-extension decisions.
Providers are priority #2 Phase 5 follows protocol foundations with Claude Code, Codex, Copilot, Antigravity, and Gemini CLI parity review.
Antigravity comparison Phase 5 explicitly compares the reference Antigravity behavior against src/rotator_library/providers/_retired/.
Routing is interesting Phase 6 implements fallback chains first, with target-group selectors later if useful.
Fallback groups preferred over target groups Phase 6 starts with ordered fallback groups and only adds target-group-style selectors after that base works.
Retry/cooldown/failover cleanup Phase 7 makes provider/model cooldown real, adds retry history, backoff, retry-after precedence, and success reset.
Quota/usage/cost improvements Phase 9 adds protocol-aware normalizers, provider-reported cost extraction, structured cost fields, and checker abstractions while keeping existing usage engines.
Streaming as library capability Phase 8 hardens streaming below the proxy route layer with TTFB, TTFT, stall detection, cancellation, and transport-aware stream events.
Config via env/json, no SQLite Phase 10 adds optional JSON config with env overrides and validation. SQLite remains out of scope.
Multi-user proxy later The branch keeps multi-user/admin features as a future expansion and only preserves extension points where natural.
Exhaustive tests in stages Every phase requires tests alongside implementation and phase-end review by both explore and explore-heavy.
Reports are for the user, not git 06-phase-workflow.md says planning docs are committed, but phase reports are not committed by default.

Code Quality Expectations

  • Public protocol, adapter, transport, field-cache, and provider-extension classes must have docstrings that explain intent, override points, and future expansion hooks.
  • Non-obvious transformations must have comments explaining why data is changed, preserved, reordered, or intentionally dropped.
  • Lossy protocol conversions must be documented at the conversion site.
  • Future WebSocket, target-group, and multi-user extension seams should be noted in comments where they affect today's design.
  • Tests should prefer golden fixtures for protocol shapes and focused unit tests for transform edge cases.

Mirrowel added 30 commits May 30, 2026 22:35
Captures the experimental branch workflow, protocol architecture goals, transform logging requirements, field-cache rules, provider priorities, routing, retry, usage, streaming, and config direction.

Documents that every phase must be freshly planned in conversation, written as planning docs, reviewed by explore and explore-heavy agents, and reported to the user without committing reports by default.
Introduces protocol-neutral request, response, stream event, content, tool, reasoning, usage, cost, and context dataclasses with JSON-safe serialization for future transform tracing.

Adds the override-friendly ProtocolAdapter base and auto-discovery registry with alias handling, duplicate detection, shared stateless instances, and tests for serialization, default preservation, registration, aliases, and protocol errors.

Tests: python -m pytest tests/test_protocol_registry.py
Adds the explicit LiteLLM fallback protocol marker and a native OpenAI Chat Completions adapter for request parsing/building, response parsing/formatting, usage and provider-reported cost extraction, reasoning preservation, tool calls, multimodal content blocks, and SSE chunk parsing.

The adapter remains isolated from runtime execution and preserves unknown extension fields for future adapter, field-cache, and transform logging phases.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py
Adds a native Anthropic Messages protocol adapter for request parsing/building, response formatting, stream event parsing, tool_use/tool_result blocks, thinking and redacted-thinking signature preservation, and cache usage normalization.

The existing compatibility routes remain untouched; this adapter is an isolated base for later native provider execution, field-cache rules, and transform logging.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py
Adds a native Gemini generateContent adapter for request parsing/building, response formatting, stream event parsing, content parts, function calls/responses, thought signatures, generation config, safety settings, tools, and Gemini usage metadata.

The adapter preserves raw Gemini-native fields and remains isolated from runtime execution so provider migration can happen in later checkpoints.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py
Adds a native Responses protocol adapter for request parsing/building, response formatting, event-stream parsing, previous_response_id preservation, input and output item handling, reasoning items, function calls, usage details, provider-reported costs, and a WebSocket-ready transport capability flag.

Routes, storage, and runtime wiring remain deferred to later checkpoints; this commit only adds the reusable protocol base and tests.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py
Addresses Phase 1 review findings by treating raw payloads as provenance instead of stale formatting authority in native adapters, tightening registry alias/name collision handling, adding JSON-safe serialization fallbacks, and avoiding default reasoning-token double counting.

Adds nested raw preservation for tool, result, and reasoning structures, exposes WebSocket as a future Responses transport seam rather than current formatting support, expands Gemini tool declaration parsing, and switches protocol tests to the public package import path through a local test path fixture.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py

Tests: python -m pytest tests/test_session_tracking.py tests/test_selection_engine.py
Preserves Anthropic system block shape and metadata during rebuilds, keeps unknown Responses output items while still applying unified-message mutations, and groups Gemini multi-declaration tools back into their original native tool container.

Adds tests for Anthropic system cache metadata, Responses future output-item preservation, and Gemini multi-declaration rebuild fidelity.

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py

Tests: python -m pytest tests/test_session_tracking.py tests/test_selection_engine.py
Adds the Phase 2 plan for additive transform-pass transaction logging, including trace entry shape, writer behavior, request/response/stream pass names, sanitization, TransactionLogger and ProviderLogger integration, tests, risks, and review checkpoints.

The Phase 1 report remains uncommitted for user-facing review only.
Introduces transform trace entries, a local-sequence JSONL/snapshot writer, recursive key-based redaction, filesystem-safe snapshot names, and JSON-safe payload serialization for future protocol and adapter pass logging.

The trace writer is observability-only and isolated from runtime transaction logging in this checkpoint.

Tests: python -m pytest tests/test_transform_trace.py
Wires the transform trace writer into TransactionLogger and ProviderLogger while preserving legacy request, transformed request, response, streaming chunk, metadata, and provider log files.

Adds trace entries for raw client requests, prepared provider requests, raw and parsed stream chunks, assembled stream responses, final client responses, provider request payloads, provider raw stream chunks, provider final responses, and provider errors.

Includes transaction logger tests for legacy compatibility, redaction, equality-skipped transformed requests, provider traces, streaming wrapper traces, and disabled logging.

Tests: python -m pytest tests/test_transform_trace.py tests/test_transaction_logger_transform_trace.py

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py

Tests: python -m pytest tests/test_session_tracking.py tests/test_selection_engine.py
Hardens Phase 2 tracing after review by adding request, session, scope, classifier, exact model, and credential correlation to trace entries where available.

Expands redaction for cookies and credential-bearing headers, extracts structured fields from SDK-like objects before repr fallback, scrubs header-like secrets from provider error text, and adds a standardized transform_log_error helper.

Prevents provider snapshot collisions by namespacing provider writer snapshots while keeping stream chunks in JSONL only.

Tests: python -m pytest tests/test_transform_trace.py tests/test_transaction_logger_transform_trace.py

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py

Tests: python -m pytest tests/test_session_tracking.py tests/test_selection_engine.py
Adds the Phase 3 plan for the adapter registry, built-in adapter bases, field-cache rule schema, path engine, store abstractions, scoped key behavior, transform trace integration, tests, risks, and review checkpoints.

Reports remain uncommitted for user-facing review only.
Adds the Phase 3 adapter foundation with an override-friendly async base adapter, adapter context, ordered chain runner, auto-discovered registry, aliases, duplicate collision checks, and built-in base adapters for no-op, model override, developer-role suppression, and reasoning content normalization.

Runtime request execution is not wired to the adapter chain yet; this checkpoint keeps behavior unchanged while establishing the extension point for native protocols and providers.

Tests: python -m pytest tests/test_adapter_registry.py
Adds field-cache rule and injection dataclasses, cache context scope values, default provider/model/classifier/session scoping, and a small JSON-path-like engine for extraction and predictable injection.

The path helper supports dict keys, list indexes, wildcard extraction, tail indexes, missing-path no-ops, and explicit errors for malformed paths or wildcard injection.

Tests: python -m pytest tests/test_field_cache_paths.py
Adds async field-cache stores, a ProviderCache-backed wrapper, scoped cache key construction, and the extraction/injection engine for last, all, turn-compatible, stream-event, and per-tool-call-validated rules.

The engine copies payloads by default, isolates values by provider/model/session/classifier/credential scope, skips missing required session scope, and emits transform trace metadata when a transaction logger is supplied.

Tests: python -m pytest tests/test_field_cache_engine.py tests/test_field_cache_paths.py
Adds the missing before_field_cache_extraction and before_field_cache_injection trace passes so field-cache operations now emit both before and after states.

Adds trace-focused tests for adapter chains, field-cache extraction/injection, rule metadata, cache hits, mutation flags, and transform_log_error emission on failed injection.

Tests: python -m pytest tests/test_field_cache_trace.py tests/test_field_cache_engine.py tests/test_adapter_registry.py
Adds optional provider declarations for native protocol name, ordered adapter names, adapter config, and field-cache rules, all defaulting to empty/no-op behavior so existing providers remain on the current execution path until they opt in.

These methods are the Phase 3 bridge that later provider work will use to attach native protocols, adapter chains, and provider-specific field-cache rules per model.

Tests: python -m pytest tests/test_provider_protocol_declarations.py tests/test_adapter_registry.py tests/test_field_cache_engine.py tests/test_field_cache_paths.py tests/test_field_cache_trace.py
Adds the planned field_rename adapter, fixes field-cache trace direction for stream-sourced request injection, caps trace sample values, and documents the current limits of turn/tool-cache modes.

Expands coverage for credential/provider scope isolation, stream-sourced injection trace direction, large sample truncation, field_rename behavior, and plain provider no-op protocol defaults.

Tests: python -m pytest tests/test_adapter_registry.py tests/test_field_cache_paths.py tests/test_field_cache_engine.py tests/test_field_cache_trace.py tests/test_provider_protocol_declarations.py

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py tests/test_transform_trace.py tests/test_transaction_logger_transform_trace.py tests/test_session_tracking.py tests/test_selection_engine.py
Adds the Phase 4 plan for Responses routes, response storage, previous_response_id continuation, bridge execution through the current client path, HTTP SSE conversion, WebSocket extension seams, tests, risks, and review checkpoints.

Reports remain uncommitted for user-facing review only.
Adds the Phase 4 Responses storage foundation with StoredResponse, local response ID generation, an in-memory store, and a ProviderCache-backed wrapper that accepts an injected cache instead of constructing one globally.

The store supports save, get, delete, and input item listing, preserves JSON-safe response metadata for previous_response_id continuation, and avoids SQLite or new persistence dependencies.

Tests: python -m pytest tests/test_responses_store.py
Adds the temporary Responses-to-chat bridge for Phase 4, converting parsed Responses requests into current chat-completions kwargs and converting chat-completion responses back into Responses objects.

The bridge preserves previous_response_id metadata, parent response messages, tool definitions, generation parameters, and unsupported extension fields for trace/debugging until native provider execution is wired in later phases.

Tests: python -m pytest tests/test_responses_bridge.py tests/test_responses_store.py
Adds the non-streaming Responses service around the protocol adapter, bridge, and response store with validation, previous_response_id loading, get/delete/input-items helpers, and transform trace passes.

The service keeps Phase 4 runtime conservative by bridging through the existing chat completion client path while preserving response storage and lineage metadata for later native provider work.

Tests: python -m pytest tests/test_responses_service.py tests/test_responses_bridge.py tests/test_responses_store.py
Adds FastAPI routes for POST /v1/responses, GET /v1/responses/{id}, DELETE /v1/responses/{id}, and GET /v1/responses/{id}/input_items using the Phase 4 ResponsesService.

The create route currently handles non-streaming requests through the bridge and returns a documented 501 for streaming until the SSE checkpoint lands next.

Tests: python -m pytest tests/test_responses_routes.py tests/test_responses_service.py tests/test_responses_bridge.py tests/test_responses_store.py
Adds Responses HTTP SSE formatting, chat-stream conversion, streamed response accumulation/storage, response.failed events on stream errors, and a WebSocket formatter seam that is explicit but not exposed as a runtime route.

Updates POST /v1/responses to return text/event-stream for stream=true while preserving the existing non-stream route behavior.

Tests: python -m pytest tests/test_responses_streaming.py tests/test_responses_routes.py tests/test_responses_service.py tests/test_responses_bridge.py tests/test_responses_store.py
Wires Responses routes into the transform trace logger when request logging is enabled, adds coverage for unsupported Responses fields preserved in bridge metadata, and strengthens streaming tests to assert SSE event order.

Tests: python -m pytest tests/test_responses_store.py tests/test_responses_bridge.py tests/test_responses_service.py tests/test_responses_routes.py tests/test_responses_streaming.py

Tests: python -m pytest tests/test_protocol_registry.py tests/test_protocol_openai_chat.py tests/test_protocol_anthropic_messages.py tests/test_protocol_gemini.py tests/test_protocol_responses.py tests/test_transform_trace.py tests/test_transaction_logger_transform_trace.py tests/test_adapter_registry.py tests/test_field_cache_paths.py tests/test_field_cache_engine.py tests/test_field_cache_trace.py tests/test_provider_protocol_declarations.py tests/test_session_tracking.py tests/test_selection_engine.py
Adds the Phase 5 plan for native provider execution, provider declarations, HTTP and streaming seams, priority provider order, Antigravity restoration constraints, Gemini CLI parity review, fallback policy, transform tracing, field-cache rules, tests, and review checkpoints.

Reports remain uncommitted for user-facing review only.
Adds the Phase 5 native provider foundation with execution context, HTTP transport wrapper, and non-streaming executor that runs protocol selection, adapter chains, field-cache injection/extraction, provider HTTP calls, and transform tracing.

The foundation is not wired into live request execution yet, preserving current provider behavior while giving priority provider work a testable native path.

Tests: python -m pytest tests/test_native_provider_executor.py tests/test_responses_store.py tests/test_responses_bridge.py tests/test_responses_service.py tests/test_responses_routes.py tests/test_responses_streaming.py
Adds opt-in native provider streaming support with streaming-capable transport seam, raw chunk tracing, protocol stream parsing, field-cache stream extraction, formatted client stream events, and transform error logging.

The streaming foundation remains isolated from live provider routing so existing providers keep current behavior while Phase 5 provider implementations gain a mocked native stream path.

Tests: python -m pytest tests/test_native_provider_executor.py tests/test_native_provider_streaming.py tests/test_responses_store.py tests/test_responses_bridge.py tests/test_responses_service.py tests/test_responses_routes.py tests/test_responses_streaming.py tests/test_protocol_responses.py tests/test_transform_trace.py tests/test_transaction_logger_transform_trace.py
Adds the first priority Phase 5 provider as an explicit native integration skeleton with Anthropic Messages protocol declaration, adapter config, thinking-signature field-cache rule, native header/endpoint helpers, and mock-friendly model discovery.

This does not assume undocumented live behavior or wire the provider into the runtime native executor yet; it establishes a tested provider declaration path for later native routing.

Tests: python -m pytest tests/test_claude_code_provider.py tests/test_provider_protocol_declarations.py tests/test_native_provider_executor.py tests/test_native_provider_streaming.py tests/test_protocol_anthropic_messages.py tests/test_adapter_registry.py tests/test_field_cache_engine.py
Mirrowel added a commit that referenced this pull request Aug 19, 2026
Content snapshot (not cherry-pick): post-checkout reactions run
/tmp/react.sh (PR #162 Critical); pre-checkout starts guarded; GraphQL
boundary notes. Trees identical to main for these files.
Mirrobot-Agent

This comment was marked as resolved.

Mirrowel added a commit that referenced this pull request Aug 19, 2026
…-identity, AI-reviewer noise filtering

Mirror of Mirrobot-agent d3d644b (live PR #162/#166 findings): taint
warning = head -1 of taint file (no flatten spill); minimized content
hidden from ALL blocks incl. agent own reviews; bare mirrobot dropped
from BOT_NAMES_JSON (name != identity; @MirRobot routing unchanged);
CONTEXT_IGNORE_AUTHORS + CONTEXT_FILTER_PATTERNS_JSON repo variables
with baked AI-reviewer noise defaults (coderabbit rate-limit/skip,
greptile status) keeping substantive reviews; ellipsis hardcode
removed; other-reviews render bodies; AI reviewers = input-never-
authority prompt stance. 57+339 battery green; e2e fixture 12/12.
Mirrobot-Agent

This comment was marked as resolved.

Mirrobot-Agent

This comment was marked as resolved.

Mirrobot-Agent

This comment was marked as resolved.

Mirrobot-Agent

This comment was marked as resolved.

Mirrobot-Agent

This comment was marked as resolved.

Replaces eight accumulated agent-sync commits (fe2ad6e..b91c680) with one.
No proxy-app changes were carried or lost: the replaced range touched only
.github/, decrypt_share_link.py and .gitignore. Experimental no longer
receives agent syncs; staleness vs main is handled by the parity carve-out.
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Repository owner deleted a comment from Mirrobot-Agent Sep 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Agent Monitored Monitored for AI Agent to review PR's and commits enhancement New feature or request Priority

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature request: Support OpenAI /v1/responses (Responses API)

2 participants