From 674b7f5eeea006dc1acb321b07e8d8b0eec0a948 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sun, 29 Mar 2026 00:57:58 +0800 Subject: [PATCH] indicate support for claude messages api --- koboldcpp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/koboldcpp.py b/koboldcpp.py index c14805ae8..c7f38b6d6 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -10013,6 +10013,7 @@ def kcpp_main_process(launch_args, g_memory=None, gui_launcher=False): if "llm" in caps and caps["llm"]: apimlist.append("OpenAiApi") apimlist.append("OllamaApi") + apimlist.append("AnthropicApi") if "txt2img" in caps and caps["txt2img"]: apimlist.append("A1111ForgeApi") apimlist.append("ComfyUiApi")