We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f4d5b9 commit aac5363Copy full SHA for aac5363
evaluators/ragas/langevals_ragas/lib/model_to_langchain.py
@@ -15,6 +15,8 @@ def model_to_langchain(model: str) -> BaseChatModel:
15
if model.startswith("claude-"):
16
model = model.replace("claude-", "anthropic/claude-")
17
18
+ litellm.set_verbose = True # type: ignore
19
+
20
return ChatLiteLLM(model=model, client=litellm.completion)
21
22
0 commit comments