OpenAI-compatible chat completion (Sunflower)
curl --request POST \
--url https://api.sunbird.ai/tasks/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>"
}
],
"model": "sunflower-14b",
"temperature": 0.3,
"max_tokens": 2,
"top_p": 0.5,
"stop": "<string>",
"stream": false
}
'import requests
url = "https://api.sunbird.ai/tasks/chat/completions"
payload = {
"messages": [{ "content": "<string>" }],
"model": "sunflower-14b",
"temperature": 0.3,
"max_tokens": 2,
"top_p": 0.5,
"stop": "<string>",
"stream": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
messages: [{content: '<string>'}],
model: 'sunflower-14b',
temperature: 0.3,
max_tokens: 2,
top_p: 0.5,
stop: '<string>',
stream: false
})
};
fetch('https://api.sunbird.ai/tasks/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sunbird.ai/tasks/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'messages' => [
[
'content' => '<string>'
]
],
'model' => 'sunflower-14b',
'temperature' => 0.3,
'max_tokens' => 2,
'top_p' => 0.5,
'stop' => '<string>',
'stream' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.sunbird.ai/tasks/chat/completions"
payload := strings.NewReader("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.sunbird.ai/tasks/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sunbird.ai/tasks/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"created": 123,
"model": "<string>",
"choices": [
{
"message": {
"content": "<string>",
"role": "assistant"
},
"index": 0,
"finish_reason": "stop"
}
],
"object": "chat.completion",
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Chat
Chat Completions
OpenAI-compatible chat completion powered by Sunbird’s Sunflower model.
Single-instruction usage is a request with one user message; conversational
usage passes the running message history. Set stream: true for
Server-Sent Events in OpenAI chat.completion.chunk format, terminated
by data: [DONE].
POST
/
tasks
/
chat
/
completions
OpenAI-compatible chat completion (Sunflower)
curl --request POST \
--url https://api.sunbird.ai/tasks/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>"
}
],
"model": "sunflower-14b",
"temperature": 0.3,
"max_tokens": 2,
"top_p": 0.5,
"stop": "<string>",
"stream": false
}
'import requests
url = "https://api.sunbird.ai/tasks/chat/completions"
payload = {
"messages": [{ "content": "<string>" }],
"model": "sunflower-14b",
"temperature": 0.3,
"max_tokens": 2,
"top_p": 0.5,
"stop": "<string>",
"stream": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
messages: [{content: '<string>'}],
model: 'sunflower-14b',
temperature: 0.3,
max_tokens: 2,
top_p: 0.5,
stop: '<string>',
stream: false
})
};
fetch('https://api.sunbird.ai/tasks/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sunbird.ai/tasks/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'messages' => [
[
'content' => '<string>'
]
],
'model' => 'sunflower-14b',
'temperature' => 0.3,
'max_tokens' => 2,
'top_p' => 0.5,
'stop' => '<string>',
'stream' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.sunbird.ai/tasks/chat/completions"
payload := strings.NewReader("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.sunbird.ai/tasks/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sunbird.ai/tasks/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"sunflower-14b\",\n \"temperature\": 0.3,\n \"max_tokens\": 2,\n \"top_p\": 0.5,\n \"stop\": \"<string>\",\n \"stream\": false\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"created": 123,
"model": "<string>",
"choices": [
{
"message": {
"content": "<string>",
"role": "assistant"
},
"index": 0,
"finish_reason": "stop"
}
],
"object": "chat.completion",
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Request body for POST /tasks/chat/completions (OpenAI format).
Conversation messages
Minimum array length:
1Show child attributes
Show child attributes
Model to use. Supported: sunflower-14b, sunflower-9b
Sampling temperature
Required range:
0 <= x <= 2Maximum tokens to generate
Required range:
x >= 1Nucleus sampling probability
Required range:
0 < x <= 1Stop sequence(s)
Stream the response as Server-Sent Events
Response
Successful Response
Non-streaming response body, OpenAI chat.completion object.

