From 612fb30af6b2b048b3cd4d6835071660bef16208 Mon Sep 17 00:00:00 2001 From: Cristiano Hoshikawa Date: Sun, 1 Mar 2026 09:50:06 -0300 Subject: [PATCH] bug fix. PROMPT OK --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 795cf51..23ef731 100644 --- a/README.md +++ b/README.md @@ -429,6 +429,24 @@ curl http://127.0.0.1:8050/v1/chat/completions -H "Content-Type: application/j "model": "gpt-5", "messages": [{"role": "user", "content": "Hello"}] }' + +``` + +Or if you want to generate a PPTX direct by the **oci_openai_proxy.py**: + +```bash + +curl http://127.0.0.1:8050/v1/chat/completions \ + -H "Content-Type: application/json" \ + -d '{ + "model": "gpt-5", + "messages": [ + {"role": "user", "content": "generate pptx from https://github.com/hoshikawa2/flexcube-14.5 in portuguese"} + ], + "temperature": 0.2 + }' + + ``` ---