diff --git a/README.md b/README.md index becdf172..a95de3a2 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ Content-Type: `multipart/form-data` | prompt | string | Yes | The main topic or prompt for generating the presentation | | n_slides | integer | No | Number of slides to generate (default: 8, min: 5, max: 15) | | language | string | No | Language for the presentation (default: "English") | -| layout | string | No | Presentation theme (default: "classic"). Available options: "classic", "general", "modern", "professional" | +| layout | string | No | Presentation theme (default: "general"). Available options: "classic", "general", "modern", "professional" + Custom layouts | | documents | File[] | No | Optional list of document files to include in the presentation. Supported file types: PDF, TXT, PPTX, DOCX | | export_as | string | No | Export format ("pptx" or "pdf", default: "pptx") | @@ -159,6 +159,7 @@ curl -X POST http://localhost:5000/api/v1/ppt/generate/presentation \ -F "prompt=Introduction to Machine Learning" \ -F "n_slides=5" \ -F "language=English" \ + -F "layout=general" \ -F "theme=light" \ -F "export_as=pptx" ```