300e33980a
Move providers.py + profiles.py from cmd_chat/agent/ to a shared
cmd_chat/ai/ package so the operator bridge and the /ai chat agent can
consume one model-agnostic Provider core (groundwork for harness-mode
operators). Pure refactor — no behaviour change.
- cmd_chat/ai/{providers,profiles}.py: the canonical modules (moved verbatim)
- cmd_chat/ai/__init__.py: re-exports the public API
- cmd_chat/agent/{providers,profiles}.py: thin back-compat shims re-exporting
from cmd_chat.ai (keeps `from cmd_chat.agent.providers import …` working,
e.g. hh/scripts/bench-native-harness.py)
- internal agent consumers (memory/bridge/__main__/__init__) point at cmd_chat.ai
125 tests pass; shim identity verified (re-exports are the same objects).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
669 B
Python
22 lines
669 B
Python
"""Backward-compatibility shim.
|
|
|
|
The provider abstraction moved to :mod:`cmd_chat.ai.providers` so the operator
|
|
bridge and the ``/ai`` chat agent share one model-agnostic core. This module
|
|
re-exports the public API so existing imports
|
|
(``from cmd_chat.agent.providers import …``) keep working. Prefer importing from
|
|
``cmd_chat.ai.providers`` in new code.
|
|
"""
|
|
|
|
from cmd_chat.ai.providers import * # noqa: F401,F403
|
|
from cmd_chat.ai.providers import ( # noqa: F401 (explicit for star-safety)
|
|
Msg,
|
|
OllamaEmbedder,
|
|
OllamaProvider,
|
|
AnthropicProvider,
|
|
OpenAICompatibleProvider,
|
|
Provider,
|
|
ToolsUnsupported,
|
|
make_provider,
|
|
preflight,
|
|
)
|