Skip to content

Commit

Permalink
Revert "Remove kwargs print call in Claude LM"
Browse files Browse the repository at this point in the history
This reverts commit 9242b01.
  • Loading branch information
krypticmouse committed Mar 14, 2024
1 parent 9242b01 commit 11847e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dsp/modules/anthropic.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def basic_request(self, prompt: str, **kwargs):
# caching mechanism requires hashable kwargs
kwargs["messages"] = [{"role": "user", "content": prompt}]
kwargs.pop("n")

print(kwargs)
response = self.client.messages.create(**kwargs)

history = {
Expand Down

0 comments on commit 11847e0

Please sign in to comment.