File size: 953 Bytes
850d598
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842b75a
850d598
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Convert the given slide deck text into structured JSON output.
Also, generate and add an engaging presentation title.
The output should be only correct and valid JSON having the following structure:

{
    "title": "...",
    "slides": [
        {
            "heading": "...",
            "bullet_points": [
                "...",
                [
                    "...",
                    "..."
                ]
            ]
        },
        {
            ...
        },
    ]
}


===
Text:

<REPLACE_PLACEHOLDER>
===

In the output JSON, the `heading` field should contain the heading of each slide,
Each slide object has a `bullet_points` array containing the slide's contents. 
The `bullet_points` array can contain strings or array of strings.
The indented sub-bullets for each slide from the input text should appear as an array of strings inside `bullet_points`.
The `bullet_points` field must not contain any object.

Output:
```json