RenderfulRenderful
Model Configuration

Model Information

Context:128,000
Input:$2.5000/1M
Output:$10.0000/1M
2048

Max: 16,384 tokens

1.00
1.00
50
0.00
0.00
1.00
Playground

Start a conversation

Type a message below to begin

API Usage

Code reflects your current playground configuration and conversation

curl -X POST https://api.renderful.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{ "role": "user", "content": "Hello!" },
{ "role": "assistant", "content": "" }
],
"max_tokens": 2048,
"temperature": 1,
"top_p": 1,
"top_k": 50,
"presence_penalty": 0,
"frequency_penalty": 0,
"repetition_penalty": 1
}'