Matias Stager commited on
Commit
8bdd63e
·
1 Parent(s): faedf96

OpenAI Function Calling Demo Text

Browse files
Files changed (2) hide show
  1. app.py +2 -2
  2. chat_settings.py +1 -1
app.py CHANGED
@@ -19,10 +19,10 @@ LLM = "gpt-3.5-turbo-0613"
19
 
20
  # Streamlit Application
21
  def main():
22
- st.title("ProPilot - Implementando Functions Calling")
23
  st.markdown(
24
  """
25
- Esta es una demo en la cual se busca implementar de manera sencilla las functions calling de la API de OpenAI.
26
  """
27
  )
28
 
 
19
 
20
  # Streamlit Application
21
  def main():
22
+ st.title("ProPilot - OpenAI Demo Function Calling")
23
  st.markdown(
24
  """
25
+ Demo of OpenAI function calling using gpt-3.5-turbo-0613. ProPilot - QuePlan
26
  """
27
  )
28
 
chat_settings.py CHANGED
@@ -12,7 +12,7 @@ def get_initial_message():
12
  messages = [
13
  {
14
  "role": "system",
15
- "content": "Hola, soy ProPilot. Si deseas probar el function calling que tengo configurado solo pregunta: Cual es la suma de 24 y el valor hexadecimal F?",
16
  },
17
  ]
18
  return messages
 
12
  messages = [
13
  {
14
  "role": "system",
15
+ "content": "Hola, soy ProPilot. Para probar el function calling pregunta: ¿Cuál es la suma de 24 y el valor hexadecimal F?",
16
  },
17
  ]
18
  return messages