mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 19:54:13 +00:00
test langfuse added
This commit is contained in:
parent
8457f5e88b
commit
1423e07aab
1 changed files with 29 additions and 0 deletions
29
litellm/tests/test_langfuse.py
Normal file
29
litellm/tests/test_langfuse.py
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
import io
|
||||||
|
|
||||||
|
sys.path.insert(0, os.path.abspath('../..'))
|
||||||
|
|
||||||
|
from litellm import completion
|
||||||
|
import litellm
|
||||||
|
|
||||||
|
litellm.success_callback = ["langfuse"]
|
||||||
|
# litellm.set_verbose = True
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def test_langfuse_logging():
|
||||||
|
try:
|
||||||
|
response = completion(model="claude-instant-1.2",
|
||||||
|
messages=[{
|
||||||
|
"role": "user",
|
||||||
|
"content": "Hi 👋 - i'm claude"
|
||||||
|
}])
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
test_langfuse_logging()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue