Akash473 commited on
Commit
e0456b2
·
verified ·
1 Parent(s): 03cc696

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -11
app.py CHANGED
@@ -82,15 +82,11 @@ additional_inputs = [
82
  initial_prompt = "Hello John! Welcome to our simulation interview for the Solution Architect position. I understand you may have some initial thoughts or questions about the job requirements. Feel free to share those with me."
83
 
84
  gr.ChatInterface(
85
- fn=generate,
86
- inputs=[gr.Textbox(label="Initial Prompt", type="text", default=initial_prompt)],
87
- outputs=gr.Chatbot(
88
- show_label=False,
89
- show_share_button=False,
90
- show_copy_button=True,
91
- likeable=True,
92
- layout="panel",
93
- ),
94
- additional_inputs=additional_inputs,
95
- title="""Gen-AIInterviewUseCase featuring Mistral 7B""",
96
  ).launch(show_api=False)
 
82
  initial_prompt = "Hello John! Welcome to our simulation interview for the Solution Architect position. I understand you may have some initial thoughts or questions about the job requirements. Feel free to share those with me."
83
 
84
  gr.ChatInterface(
85
+ generate,
86
+ [
87
+ gr.Textbox(label="Initial Prompt", type="text", default=initial_prompt),
88
+ *additional_inputs,
89
+ ],
90
+ gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
91
+ title="Gen-AIInterviewUseCase featuring Mistral 7B",
 
 
 
 
92
  ).launch(show_api=False)