handled merge conflicts

This commit is contained in:
Krrish Dholakia 2023-07-31 18:33:29 -07:00
parent 272c0ee7f2
commit f753aac5aa
6 changed files with 6 additions and 28 deletions

View file

@ -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"}]