Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 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)
|