Ninjasharp commited on
Commit
30b6592
·
verified ·
1 Parent(s): a528bc7

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -10
app.py CHANGED
@@ -65,16 +65,15 @@ def main():
65
 
66
  with col1:
67
  st.write("### Detailed Information")
68
- st.json({
69
- "Model": model,
70
- "Temperature": temperature,
71
- "Output Size": output_size,
72
- "Bullet Points": bullet_points,
73
- "Humanize Text": humanize_text,
74
- "Display Final Answer": display_final_answer,
75
- "System Prompt": system_prompt,
76
- "User Query": user_query
77
- })
78
  if display_final_answer:
79
  st.write("### Original Response")
80
  st.text_area("Original Response", value=response, height=600)
 
65
 
66
  with col1:
67
  st.write("### Detailed Information")
68
+ st.write("Model:", model)
69
+ st.write("Temperature:", temperature)
70
+ st.write("Output Size:", output_size)
71
+ st.write("Bullet Points:")
72
+ st.write(bullet_points)
73
+ st.write("Humanize Text:", humanize_text)
74
+ st.write("Display Final Answer:", display_final_answer)
75
+ st.write("System Prompt:", system_prompt)
76
+ st.write("User Query:", user_query)
 
77
  if display_final_answer:
78
  st.write("### Original Response")
79
  st.text_area("Original Response", value=response, height=600)