pvanand commited on
Commit
cabd548
·
verified ·
1 Parent(s): cc281d5

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -17,8 +17,8 @@ HELICON_API_KEY = os.getenv("HELICON_API_KEY")
17
  SUPABASE_USER = os.environ['SUPABASE_USER']
18
  SUPABASE_PASSWORD = os.environ['SUPABASE_PASSWORD']
19
 
20
- llm_default_small = "llama3-8b-8192"
21
- llm_default_medium = "llama3-70b-8192"
22
 
23
  SysPromptJson = "You are now in the role of an expert AI who can extract structured information from user request. Both key and value pairs must be in double quotes. You must respond ONLY with a valid JSON file. Do not add any additional comments."
24
  SysPromptList = "You are now in the role of an expert AI who can extract structured information from user request. All elements must be in double quotes. You must respond ONLY with a valid python List. Do not add any additional comments."
 
17
  SUPABASE_USER = os.environ['SUPABASE_USER']
18
  SUPABASE_PASSWORD = os.environ['SUPABASE_PASSWORD']
19
 
20
+ llm_default_small = "meta-llama/Llama-3-8b-chat-hf"
21
+ llm_default_medium = "meta-llama/Llama-3-70b-chat-hf"
22
 
23
  SysPromptJson = "You are now in the role of an expert AI who can extract structured information from user request. Both key and value pairs must be in double quotes. You must respond ONLY with a valid JSON file. Do not add any additional comments."
24
  SysPromptList = "You are now in the role of an expert AI who can extract structured information from user request. All elements must be in double quotes. You must respond ONLY with a valid python List. Do not add any additional comments."