From a99bbcca3925d7d2fff73e6c0dae94b7eb7091b7 Mon Sep 17 00:00:00 2001 From: liuwei Date: Fri, 10 Apr 2026 09:06:53 +0800 Subject: [PATCH] add ai_auto_response llm client compatibility shim --- plugins/ai_auto_response/llm_client.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 plugins/ai_auto_response/llm_client.py diff --git a/plugins/ai_auto_response/llm_client.py b/plugins/ai_auto_response/llm_client.py new file mode 100644 index 0000000..18f5832 --- /dev/null +++ b/plugins/ai_auto_response/llm_client.py @@ -0,0 +1,5 @@ +from __future__ import annotations + +from .core.llm_client import LLMClient + +__all__ = ["LLMClient"]