pvanand commited on
Commit
f48a49c
1 Parent(s): cabd548

Update helper_functions_api.py

Browse files
Files changed (1) hide show
  1. helper_functions_api.py +2 -2
helper_functions_api.py CHANGED
@@ -67,8 +67,8 @@ from half_json.core import JSONFixer
67
  from openai import OpenAI
68
  from together import Together
69
 
70
- llm_default_small = "llama3-8b-8192"
71
- llm_default_medium = "llama3-70b-8192"
72
 
73
  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."
74
  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."
 
67
  from openai import OpenAI
68
  from together import Together
69
 
70
+ llm_default_small = "meta-llama/Llama-3-8b-chat-hf"
71
+ llm_default_medium = "meta-llama/Llama-3-70b-chat-hf"
72
 
73
  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."
74
  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."