docs(readme): corrects api endpoint and body

This commit is contained in:
sauravniraula 2025-07-29 09:33:17 +05:45
parent 325ef1e66a
commit 725da454f3
No known key found for this signature in database
GPG key ID: 60FCC1B5A5E83326
2 changed files with 1 additions and 2 deletions

View file

@ -155,12 +155,11 @@ Content-Type: `multipart/form-data`
#### Example Request
```bash
curl -X POST http://localhost:5000/api/v1/ppt/generate/presentation \
curl -X POST http://localhost:5000/api/v1/ppt/presentation/generate \
-F "prompt=Introduction to Machine Learning" \
-F "n_slides=5" \
-F "language=English" \
-F "layout=general" \
-F "theme=light" \
-F "export_as=pptx"
```