mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
36 lines
714 B
Python
36 lines
714 B
Python
import sys
|
|
import os
|
|
import io
|
|
|
|
sys.path.insert(0, os.path.abspath('../..'))
|
|
|
|
from litellm import completion
|
|
import litellm
|
|
|
|
litellm.success_callback = ["wandb"]
|
|
|
|
# litellm.set_verbose = True
|
|
import time
|
|
|
|
|
|
|
|
def test_wandb_logging():
|
|
try:
|
|
response = completion(model="claude-instant-1.2",
|
|
messages=[{
|
|
"role": "user",
|
|
"content": "Hi 👋 - i'm claude"
|
|
}],
|
|
max_tokens=10,
|
|
temperature=0.2
|
|
)
|
|
# print(response)
|
|
except Exception as e:
|
|
print(e)
|
|
|
|
test_wandb_logging()
|
|
|
|
|
|
|
|
|
|
|