Rathapoom commited on
Commit
6f1c68e
·
verified ·
1 Parent(s): 5946090

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -10,18 +10,18 @@ st.title("Test OpenAI API in Streamlit")
10
  # User input
11
  user_input = st.text_area("Enter prompt to generate questions:")
12
 
13
- if st.button("Generate Questions"):
14
  if user_input:
15
- # Use the new chat-based API
16
- response = openai.ChatCompletion.create(
17
- model="gpt-4o-mini", # You can use "gpt-4" if available
18
  messages=[
19
- {"role": "system", "content": "You are a helpful assistant that generates exam questions."},
20
- {"role": "user", "content": f"Generate exam questions from the following material: {user_input}"}
21
  ]
22
  )
23
- # Display the generated questions
24
- st.write("Generated Questions:")
25
- st.write(response['choices'][0]['message']['content'])
26
  else:
27
  st.warning("Please enter a prompt.")
 
10
  # User input
11
  user_input = st.text_area("Enter prompt to generate questions:")
12
 
13
+ if st.button("Generate Response"):
14
  if user_input:
15
+ # Create a chat completion
16
+ completion = openai.ChatCompletion.create(
17
+ model="gpt-3.5-turbo", # Or use "gpt-4" if available to you
18
  messages=[
19
+ {"role": "system", "content": "You are a helpful assistant."},
20
+ {"role": "user", "content": user_input}
21
  ]
22
  )
23
+ # Display the assistant's reply
24
+ st.write("Assistant's response:")
25
+ st.write(completion.choices[0].message['content'])
26
  else:
27
  st.warning("Please enter a prompt.")