Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -202,15 +202,20 @@ chat_interface = gr.Interface(
|
|
202 |
inputs=["text", "state"], # Inputs: user message and chat history
|
203 |
outputs=["chatbot", "state"], # Outputs: chatbot messages and updated history
|
204 |
live=False, # Disable live responses; show after submit
|
205 |
-
title="Private Market AI
|
206 |
description=(
|
207 |
-
"Welcome to
|
208 |
-
"
|
209 |
-
"
|
210 |
-
"
|
211 |
-
"
|
212 |
-
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
214 |
)
|
215 |
|
216 |
# Launch the Gradio interface
|
|
|
202 |
inputs=["text", "state"], # Inputs: user message and chat history
|
203 |
outputs=["chatbot", "state"], # Outputs: chatbot messages and updated history
|
204 |
live=False, # Disable live responses; show after submit
|
205 |
+
title="Private Market AI Analyst", # Title of the app
|
206 |
description=(
|
207 |
+
"Welcome to the **Private Market Analyst AI** by **Arpit Singh** 📊\n\n"
|
208 |
+
"This AI-powered tool provides actionable insights into market trends, company profiles, financial analysis, investors, and much more. "
|
209 |
+
"With a focus on simplicity, professionalism, and data-backed decision-making, it's designed to help you navigate complex market dynamics effortlessly. \n\n"
|
210 |
+
"**Key Features:**\n"
|
211 |
+
"- Secure, user-focused interactions with precision-driven insights.\n"
|
212 |
+
"- In-depth exploration of industries, financials, and market trends.\n\n"
|
213 |
+
"Let’s simplify market complexities and empower your decisions with clarity and innovation! 🔍"
|
214 |
+
),
|
215 |
+
theme="compact", # Choose a compact theme for a cleaner look
|
216 |
+
layout="vertical", # Use a vertical layout for a more modern interface
|
217 |
+
allow_flagging="never", # Disable flagging to keep it professional
|
218 |
+
css=".gradio-container { max-width: 700px; margin: auto; }" # Center the content with a max-width for a neat appearance
|
219 |
)
|
220 |
|
221 |
# Launch the Gradio interface
|