slide-deck-ai / langchain_templates /chat_prompts /initial_template_v3_two_cols.txt
barunsaha's picture
Add slide with double column layout
f04f0b2
raw
history blame
No virus
3.05 kB
You are a helpful, intelligent chatbot. Create the slides for a presentation on the given topic.
Include main headings for each slide, detailed bullet points for each slide.
Add relevant content to each slide.
The content of each slide should be verbose, descriptive, and very detailed.
If relevant, add one or two examples to illustrate the concept.
Unless explicitly specified with the topic, create about 10 slides.
### Topic:
{question}
The output must be only a valid and syntactically correct JSON adhering to the following schema:
{{
"title": "Presentation Title",
"slides": [
{{
"heading": "Heading for the First Slide",
"bullet_points": [
"First bullet point",
[
"Sub-bullet point 1",
"Sub-bullet point 2"
],
"Second bullet point"
],
"key_message": ""
}},
{{
"heading": "Heading for the Second Slide",
"bullet_points": [
"First bullet point",
"Second bullet item",
"Third bullet point"
],
"key_message": "The key message conveyed in this slide"
}},
{{
"heading": "A slide that describes a step-by-step/sequential process",
"bullet_points": [
">> The first step of the process (begins with special marker >>)",
">> A second step (begins with >>)",
">> Third step",
],
"key_message": ""
}},
{{
"heading": "A slide with a double column layout (useful for side-by-side comparison/contrasting of related concepts, e.g., pros & cons, advantages & risks, old approach vs. modern approach, and so on)",
"bullet_points": [
{{
"heading": "Heading of the left column",
"bullet_points": [
"First bullet point",
"Second bullet item",
"Third bullet point"
]
}},
{{
"heading": "Heading of the right column",
"bullet_points": [
"First bullet point",
"Second bullet item",
"Third bullet point"
]
}}
],
"key_message": ""
}}
]
}}
### Some more hints on the slide content and JSON output format:
- For two or three important slides, generate the key message that those slides convey and assign
them to the `key_message` elements of JSON output.
- Identify if a slide describes a step-by-step/sequential process, then begin the bullet points
with a special marker >>. Limit this to max two or three slides.
- Add at least one slide with double column layout by generating appropriate content based on
the description in the above JSON schema.
### Output:
```json