Mathias Lux commited on
Commit
7b49760
·
1 Parent(s): f12e3fe

moved description to chatinterface.,

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -63,19 +63,19 @@ def respond(
63
 
64
 
65
  with gr.Blocks(title="AI Biographical Interview Assistant") as demo:
66
- gr.Markdown("# AI Biographical Interview Assistant")
67
- gr.Markdown("""
 
 
 
 
68
  Welcome to the AI Biographical Interview Assistant! This tool uses advanced AI to conduct
69
  an in-depth interview about your life experiences. The AI interviewer uses the Socratic method
70
  to ask thoughtful questions and gather information for creating a biographical article.
71
 
72
  Simply start with stating your name and a few facts about your early childhood, and the AI will guide you through the interview process.
73
  When finished ask for the final article and the AI will give wrap it up and give you a summary.
74
- """)
75
-
76
- chatbot = gr.ChatInterface(
77
- respond,
78
- title = "AI Biographical Interview Assistant",
79
  )
80
 
81
 
 
63
 
64
 
65
  with gr.Blocks(title="AI Biographical Interview Assistant") as demo:
66
+ # gr.Markdown("# AI Biographical Interview Assistant")
67
+
68
+ chatbot = gr.ChatInterface(
69
+ respond,
70
+ title = "AI Biographical Interview Assistant",
71
+ description = """
72
  Welcome to the AI Biographical Interview Assistant! This tool uses advanced AI to conduct
73
  an in-depth interview about your life experiences. The AI interviewer uses the Socratic method
74
  to ask thoughtful questions and gather information for creating a biographical article.
75
 
76
  Simply start with stating your name and a few facts about your early childhood, and the AI will guide you through the interview process.
77
  When finished ask for the final article and the AI will give wrap it up and give you a summary.
78
+ """
 
 
 
 
79
  )
80
 
81