mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
handled merge conflicts
This commit is contained in:
parent
272c0ee7f2
commit
f753aac5aa
6 changed files with 6 additions and 28 deletions
|
@ -1,10 +1,10 @@
|
|||
import sys, os
|
||||
import traceback
|
||||
sys.path.append('..') # Adds the parent directory to the system path
|
||||
import main
|
||||
from main import completion
|
||||
sys.path.insert(0, os.path.abspath('../..')) # Adds the parent directory to the system path
|
||||
import litellm
|
||||
from litellm import embedding, completion
|
||||
|
||||
main.set_verbose = True
|
||||
litellm.set_verbose = True
|
||||
|
||||
user_message = "Hello, whats the weather in San Francisco??"
|
||||
messages = [{ "content": user_message,"role": "user"}]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue