simonraj commited on
Commit
2c820b8
·
1 Parent(s): 0cc05a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -29,7 +29,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
29
  payload = {
30
  "model": "gpt-4",
31
  "messages": initial_message ,
32
- "temperature" : 1.0,
33
  "top_p":1.0,
34
  "n" : 1,
35
  "stream": True,
@@ -54,7 +54,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
54
  messages.append(temp)
55
  #messages
56
  payload = {
57
- "model": "gpt-3.5-turbo",
58
  "messages": messages, # Of the type of [{"role": "user", "content": f"{inputs}"}],
59
  "temperature" : temperature, #1.0,
60
  "top_p": top_p, #1.0,
@@ -62,7 +62,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
62
  "stream": True,
63
  "presence_penalty":0,
64
  "frequency_penalty":0,
65
- "max_tokens": 400 # Limiting the token count to 400
66
  }
67
 
68
  chat_counter+=1
@@ -127,7 +127,7 @@ with gr.Blocks(css = """#col_container { margin-left: auto; margin-right: auto;}
127
  with gr.Accordion(label="System message:", open=False):
128
  system_msg = gr.Textbox(label="Instruct the AI Assistant to set its behaviour",
129
  info = system_msg_info,
130
- value="You are an expert teacher for Primary 6 Social Studies in Singapore. Explain clearly and concisely about the South East Asian Kingdoms, specifically: Legacies of Funan, Srivijaya, Sukhothai, Majapahit, Melaka, and Angkor. Ensure your explanations are suitable for Primary 6 students.")
131
  accordion_msg = gr.HTML(value="🚧 To set System message you will have to refresh the app", visible=False)
132
  chatbot = gr.Chatbot(label='SS Coach', elem_id="chatbot")
133
  inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter")
 
29
  payload = {
30
  "model": "gpt-4",
31
  "messages": initial_message ,
32
+ "temperature" : 0.6,
33
  "top_p":1.0,
34
  "n" : 1,
35
  "stream": True,
 
54
  messages.append(temp)
55
  #messages
56
  payload = {
57
+ "model": "gpt-4",
58
  "messages": messages, # Of the type of [{"role": "user", "content": f"{inputs}"}],
59
  "temperature" : temperature, #1.0,
60
  "top_p": top_p, #1.0,
 
62
  "stream": True,
63
  "presence_penalty":0,
64
  "frequency_penalty":0,
65
+ "max_tokens": 100 # Limiting the token count to 400
66
  }
67
 
68
  chat_counter+=1
 
127
  with gr.Accordion(label="System message:", open=False):
128
  system_msg = gr.Textbox(label="Instruct the AI Assistant to set its behaviour",
129
  info = system_msg_info,
130
+ value="You are an AI assistant acting as a coach for Primary 6 students working on an environmental awareness project. Guide the students through the design thinking process to develop an effective campaign using upcycled materials. Motivate them to fully empathize with sustainability issues through research. Encourage creative solutions and provide constructive feedback. Make sure your explanations of the design thinking steps are clear and suitable for Primary 6 students.")
131
  accordion_msg = gr.HTML(value="🚧 To set System message you will have to refresh the app", visible=False)
132
  chatbot = gr.Chatbot(label='SS Coach', elem_id="chatbot")
133
  inputs = gr.Textbox(placeholder= "Hi there!", label= "Type an input and press Enter")