fix(llm): add debug logging for custom API base URL configuration
- Add debug print statement to log custom API base URL when configured - Improves troubleshooting and visibility into LiteLLM adapter initialization - Helps developers verify correct API endpoint configuration during runtime
This commit is contained in:
parent
07810b309c
commit
cd80517f2d
|
|
@ -128,6 +128,7 @@ class LiteLLMAdapter(BaseLLMAdapter):
|
||||||
# 设置 API Base URL
|
# 设置 API Base URL
|
||||||
if self._api_base:
|
if self._api_base:
|
||||||
kwargs["api_base"] = self._api_base
|
kwargs["api_base"] = self._api_base
|
||||||
|
print(f"🔗 使用自定义 API Base: {self._api_base}")
|
||||||
|
|
||||||
# 设置超时
|
# 设置超时
|
||||||
kwargs["timeout"] = self.config.timeout
|
kwargs["timeout"] = self.config.timeout
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue