Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -67,8 +67,21 @@ def answer_query(message, chat_history):
|
|
| 67 |
|
| 68 |
with gr.Blocks() as demo:
|
| 69 |
gr.HTML("<h1 align = 'center'>ChatGPT augmented with specific Cyber Security Knowledge</h1>")
|
| 70 |
-
|
| 71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
chatbot = gr.Chatbot()
|
| 73 |
msg = gr.Textbox(label = "Enter your question here")
|
| 74 |
msg.submit(answer_query,[msg,chatbot],[msg,chatbot])
|
|
|
|
| 67 |
|
| 68 |
with gr.Blocks() as demo:
|
| 69 |
gr.HTML("<h1 align = 'center'>ChatGPT augmented with specific Cyber Security Knowledge</h1>")
|
| 70 |
+
gr.Markdown("""## 1. Input: 🔍
|
| 71 |
+
**Define Your Workshop Objective.**
|
| 72 |
+
Choose a topic that is timely and fills a skill gap relevant to your consulting firm’s strategic goals.
|
| 73 |
+
Define learning goals that focus on acquiring skills applicable in real-world consulting scenarios.
|
| 74 |
+
Consider how mastering these skills can innovate and enhance your firm’s service offerings, aligning with emerging market needs and providing a competitive edge.
|
| 75 |
+
*Our AI takes care to draft story points based on your input.*
|
| 76 |
+
**What are Story Points?**
|
| 77 |
+
Story points are key milestones in your presentation that underline important learning outcomes. You can adapt them in the next step to cover skills and insights crucial for your firm’s services.
|
| 78 |
+
## 2. Storyline: 🦄
|
| 79 |
+
**Content Requirements and Story Points.**
|
| 80 |
+
Develop content that supports your workshop’s learning goals, using theories, case studies, and real-world applications.
|
| 81 |
+
**Evaluating Story Points.**
|
| 82 |
+
Effective story points are clear, engaging, and directly tied to your objectives. They should advance understanding and skill acquisition.
|
| 83 |
+
""")
|
| 84 |
+
|
| 85 |
chatbot = gr.Chatbot()
|
| 86 |
msg = gr.Textbox(label = "Enter your question here")
|
| 87 |
msg.submit(answer_query,[msg,chatbot],[msg,chatbot])
|