arpit13 commited on
Commit
e1b34fb
·
verified ·
1 Parent(s): 95d39b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -8
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 Agent", # Title of the app
206
  description=(
207
- "Welcome to your professional Private Market Analyst AI Agent by Satyam! 📊\n\n"
208
- "Ask me anything about market trends, company profiles, financial analysis, investors, and more! "
209
- "I’ll provide you with concise insights that are informative and to the point, helping you make well-informed decisions. \n\n"
210
- "Let's break down market complexities with clarity. 🔍\n\n"
211
- "We Transform Data into Deal"
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