ericwangpq commited on
Commit
ae51d04
·
1 Parent(s): 113c18f
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -9,7 +9,9 @@ import json
9
  API_KEY = os.getenv("PPLX_API_KEY")
10
  client = OpenAI(api_key=API_KEY, base_url="https://api.perplexity.ai")
11
 
12
- GSE_model="llama-3-70b-instruct"
 
 
13
 
14
  def predict(message, history):
15
  history_openai_format = []
 
9
  API_KEY = os.getenv("PPLX_API_KEY")
10
  client = OpenAI(api_key=API_KEY, base_url="https://api.perplexity.ai")
11
 
12
+ # GSE_model="llama-3-70b-instruct" # llama-3(latest updated model), knowledge cutoff is December 2022
13
+ GSE_model="pplx-70b-online" # llm by perplexity, online model
14
+
15
 
16
  def predict(message, history):
17
  history_openai_format = []