2026-02-08 23:15:33 +01:00
|
|
|
"""
|
2026-02-27 08:04:50 +01:00
|
|
|
Re-exports from markitect.llm.adapter for backward compatibility.
|
2026-02-08 23:15:33 +01:00
|
|
|
|
2026-02-27 08:04:50 +01:00
|
|
|
The LLM adapter interface was moved to markitect.llm.adapter in v1.1.
|
2026-02-08 23:15:33 +01:00
|
|
|
"""
|
|
|
|
|
|
2026-02-27 08:04:50 +01:00
|
|
|
from markitect.llm.adapter import LLMAdapter, MockLLMAdapter, ErrorLLMAdapter
|
2026-02-08 23:15:33 +01:00
|
|
|
|
2026-02-27 08:04:50 +01:00
|
|
|
__all__ = ["LLMAdapter", "MockLLMAdapter", "ErrorLLMAdapter"]
|