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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "geny-executor"
version = "2.0.5"
version = "2.0.6"
description = "Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/geny_executor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
ProviderDrivenStrategy,
)

__version__ = "2.0.5"
__version__ = "2.0.6"

__all__ = [
# Core
Expand Down
10 changes: 0 additions & 10 deletions src/geny_executor/core/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,6 @@ def _creds_to_client_kwargs(provider: str, creds: ProviderCredentials) -> Dict[s
kwargs[key] = extras[key]
return kwargs

if provider == "copilot_cli":
extras = dict(creds.extras or {})
kwargs = {}
if creds.binary_path:
kwargs["gh_binary_path"] = creds.binary_path
for key in ("allow_tools", "cwd", "extra_args", "timeout_s"):
if key in extras:
kwargs[key] = extras[key]
return kwargs

# API providers (anthropic / openai / google)
kwargs = {"api_key": creds.api_key}
if creds.base_url is not None:
Expand Down
2 changes: 0 additions & 2 deletions src/geny_executor/llm_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from geny_executor.llm_client.anthropic import AnthropicClient
from geny_executor.llm_client.base import BaseClient, ClientCapabilities
from geny_executor.llm_client.claude_code import ClaudeCodeCLIClient
from geny_executor.llm_client.copilot import CopilotCLIClient
from geny_executor.llm_client.credentials import (
ConfigError,
CredentialBundle,
Expand All @@ -28,7 +27,6 @@
"ClientRegistry",
"ConfigError",
"ContentBlock",
"CopilotCLIClient",
"CredentialBundle",
"ProviderCredentials",
]
6 changes: 4 additions & 2 deletions src/geny_executor/llm_client/_cli_runtime.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
"""Async subprocess primitives shared by CLI-backed LLM clients.

This module is the *only* place where ``asyncio.create_subprocess_exec`` is
called inside ``llm_client/``. Both ``ClaudeCodeCLIClient`` (Phase B) and
``CopilotCLIClient`` (Phase C) drive their work through these helpers.
called inside ``llm_client/``. ``ClaudeCodeCLIClient`` (Phase B) drives its
work through these helpers. (The Phase-C ``CopilotCLIClient`` was removed
in 2.0.6 — see the commit message for the structural-incompatibility
rationale.)

Design rules
------------
Expand Down
185 changes: 0 additions & 185 deletions src/geny_executor/llm_client/copilot.py

This file was deleted.

7 changes: 0 additions & 7 deletions src/geny_executor/llm_client/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,8 @@ def _claude_code_cli_factory() -> Type[BaseClient]:
return ClaudeCodeCLIClient


def _copilot_cli_factory() -> Type[BaseClient]:
from geny_executor.llm_client.copilot import CopilotCLIClient

return CopilotCLIClient


ClientRegistry.register("anthropic", _anthropic_factory)
ClientRegistry.register("openai", _openai_factory)
ClientRegistry.register("google", _google_factory)
ClientRegistry.register("vllm", _vllm_factory)
ClientRegistry.register("claude_code_cli", _claude_code_cli_factory)
ClientRegistry.register("copilot_cli", _copilot_cli_factory)
6 changes: 0 additions & 6 deletions src/geny_executor/llm_client/translators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@
assemble_response_from_stream_json,
build_stream_json_stdin,
claude_code_argv,
compose_copilot_prompt,
copilot_argv,
parse_json_output_to_response,
parse_plain_text_to_response,
stream_json_line_to_canonical_event,
thinking_to_effort,
)
Expand All @@ -55,11 +52,8 @@
"canonical_tools_to_google",
"canonical_tools_to_openai",
"claude_code_argv",
"compose_copilot_prompt",
"copilot_argv",
"normalize_stop_reason",
"parse_json_output_to_response",
"parse_plain_text_to_response",
"split_tool_results",
"split_tool_uses",
"stream_json_line_to_canonical_event",
Expand Down
Loading
Loading