Update app.py
Browse files
app.py
CHANGED
@@ -212,13 +212,13 @@ class SupportCrew:
|
|
212 |
def create_demo():
|
213 |
support_crew = None
|
214 |
|
215 |
-
with gr.Blocks(theme=gr.themes.
|
216 |
gr.Markdown("# π― AI Customer Support Crew")
|
217 |
-
gr.Markdown("
|
218 |
openai_api_key = gr.Textbox(
|
219 |
label='OpenAI API Key',
|
220 |
type='password',
|
221 |
-
placeholder='
|
222 |
interactive=True
|
223 |
)
|
224 |
|
|
|
212 |
def create_demo():
|
213 |
support_crew = None
|
214 |
|
215 |
+
with gr.Blocks(theme=gr.themes.Ocean()) as demo:
|
216 |
gr.Markdown("# π― AI Customer Support Crew")
|
217 |
+
gr.Markdown("This is a friendly, high-performing multi-agent application built with Gradio and CrewAI. Enter a webpage URL and your questions from that webpage.")
|
218 |
openai_api_key = gr.Textbox(
|
219 |
label='OpenAI API Key',
|
220 |
type='password',
|
221 |
+
placeholder='Type your OpenAI API Key and press Enter to access the app...',
|
222 |
interactive=True
|
223 |
)
|
224 |
|