Update README.md
Browse files
README.md
CHANGED
@@ -50,6 +50,101 @@ NarazeAI AI Workforce: https://seedgularity.com/nazareai-ai-workforce/
|
|
50 |
4. **Professional Presentations**
|
51 |
Generate polished, data-driven presentations to effectively convey strategies and secure stakeholder buy-in.
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
### Example Interaction
|
54 |
```plaintext
|
55 |
**System**: You are a Senior Marketing Strategist, designed to provide insights, strategies, and guidance for marketing campaigns.
|
|
|
50 |
4. **Professional Presentations**
|
51 |
Generate polished, data-driven presentations to effectively convey strategies and secure stakeholder buy-in.
|
52 |
|
53 |
+
## NazareAI’s Presentation Structure
|
54 |
+
|
55 |
+
NazareAI's presentation system provides a structured format for creating presentations using a markup-based approach. This format is designed to be both human-readable and easily parseable by machines, making it ideal for developers building presentation tools and extensions.
|
56 |
+
|
57 |
+
## Core Structure
|
58 |
+
|
59 |
+
Every presentation must be wrapped in global markers:
|
60 |
+
|
61 |
+
```
|
62 |
+
nazareai_ppt_fce
|
63 |
+
[presentation content]
|
64 |
+
end_nazareai_ppt_fce
|
65 |
+
```
|
66 |
+
|
67 |
+
Individual slides are marked with sequential identifiers:
|
68 |
+
|
69 |
+
```
|
70 |
+
nazareai_ppt_slide_1:
|
71 |
+
[slide content]
|
72 |
+
nazareai_ppt_slide_2:
|
73 |
+
[slide content]
|
74 |
+
```
|
75 |
+
|
76 |
+
## Slide Components
|
77 |
+
|
78 |
+
### Required Components
|
79 |
+
|
80 |
+
* `<headline>`: The main title of the slide (required for every slide)
|
81 |
+
|
82 |
+
### Optional Components
|
83 |
+
|
84 |
+
* `<subheadline>`: Secondary heading or subtitle
|
85 |
+
* `<text>`: Main body text content
|
86 |
+
* `<emphasis>`: Highlighted text (typically shown at bottom)
|
87 |
+
* `<list>`: Bullet point items
|
88 |
+
* `<table>`: Structured tabular data
|
89 |
+
|
90 |
+
## Component Details
|
91 |
+
|
92 |
+
### Text Formatting
|
93 |
+
|
94 |
+
* Plain text is rendered as-is
|
95 |
+
* Bold text uses double asterisks: `**bold text**`
|
96 |
+
* Line breaks in lists: use `<br/>`
|
97 |
+
|
98 |
+
### Lists
|
99 |
+
|
100 |
+
Lists are defined using the `<list>` tag with bullet points:
|
101 |
+
|
102 |
+
```
|
103 |
+
<list>
|
104 |
+
• First item
|
105 |
+
• Second item
|
106 |
+
• Third item with **bold text**
|
107 |
+
</list>
|
108 |
+
```
|
109 |
+
|
110 |
+
### Tables
|
111 |
+
|
112 |
+
Tables use markdown-style syntax within `<table>` tags:
|
113 |
+
|
114 |
+
```
|
115 |
+
<table>
|
116 |
+
| Header 1 | Header 2 | Header 3 |
|
117 |
+
|----------|----------|----------|
|
118 |
+
| Row 1-1 | Row 1-2 | Row 1-3 |
|
119 |
+
| Row 2-1 | Row 2-2 | Row 2-3 |
|
120 |
+
</table>
|
121 |
+
```
|
122 |
+
|
123 |
+
## Example
|
124 |
+
|
125 |
+
Here's a complete example of a presentation with one slide using all available components:
|
126 |
+
|
127 |
+
```
|
128 |
+
nazareai_ppt_fce
|
129 |
+
nazareai_ppt_slide_1:
|
130 |
+
<headline>Main Presentation Title</headline>
|
131 |
+
<subheadline>Supporting Information</subheadline>
|
132 |
+
<text>This is the main content of the slide explaining key points.</text>
|
133 |
+
<list>
|
134 |
+
• First important point
|
135 |
+
• Second point with **emphasized text**
|
136 |
+
• Third point with additional details<br/>spanning multiple lines
|
137 |
+
</list>
|
138 |
+
<emphasis>Key takeaway message</emphasis>
|
139 |
+
<table>
|
140 |
+
| Metric | Value | Change |
|
141 |
+
|--------|-------|--------|
|
142 |
+
| Sales | 100K | +15% |
|
143 |
+
| Costs | 50K | -10% |
|
144 |
+
</table>
|
145 |
+
end_nazareai_ppt_fce
|
146 |
+
```
|
147 |
+
|
148 |
### Example Interaction
|
149 |
```plaintext
|
150 |
**System**: You are a Senior Marketing Strategist, designed to provide insights, strategies, and guidance for marketing campaigns.
|