bug fix. PROMPT OK

This commit is contained in:
2026-03-01 09:50:06 -03:00
parent 0c8861e07d
commit 612fb30af6

View File

@@ -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
}'
```
---