LFM2.5-1.2B-Thinking: Responses
curl --request POST \
--url https://api.zerogpu.ai/v1/responses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-project-id: <api-key>' \
--data '
{
"input": "What is the capital of Japan",
"model": "LFM2.5-1.2B-Thinking"
}
'import requests
url = "https://api.zerogpu.ai/v1/responses"
payload = {
"input": "What is the capital of Japan",
"model": "LFM2.5-1.2B-Thinking"
}
headers = {
"x-api-key": "<api-key>",
"x-project-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<api-key>',
'x-project-id': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({input: 'What is the capital of Japan', model: 'LFM2.5-1.2B-Thinking'})
};
fetch('https://api.zerogpu.ai/v1/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));falsepackage main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zerogpu.ai/v1/responses"
payload := strings.NewReader("{\n \"input\": \"What is the capital of Japan\",\n \"model\": \"LFM2.5-1.2B-Thinking\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("x-project-id", "<api-key>")
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))
}require 'uri'
require 'net/http'
url = URI("https://api.zerogpu.ai/v1/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["x-project-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input\": \"What is the capital of Japan\",\n \"model\": \"LFM2.5-1.2B-Thinking\"\n}"
response = http.request(request)
puts response.read_body"The capital of Japan is **Tokyo**.\n\n**Reasoning:**\n1. Japan's political, cultural, and economic center is located in Tokyo.\n2. Historically, Tokyo has served as Japan's..."{}By model
LFM2.5-1.2B-Thinking
Model details for LFM2.5-1.2B-Thinking.
POST
/
responses
LFM2.5-1.2B-Thinking: Responses
curl --request POST \
--url https://api.zerogpu.ai/v1/responses \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-project-id: <api-key>' \
--data '
{
"input": "What is the capital of Japan",
"model": "LFM2.5-1.2B-Thinking"
}
'import requests
url = "https://api.zerogpu.ai/v1/responses"
payload = {
"input": "What is the capital of Japan",
"model": "LFM2.5-1.2B-Thinking"
}
headers = {
"x-api-key": "<api-key>",
"x-project-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<api-key>',
'x-project-id': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({input: 'What is the capital of Japan', model: 'LFM2.5-1.2B-Thinking'})
};
fetch('https://api.zerogpu.ai/v1/responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));falsepackage main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zerogpu.ai/v1/responses"
payload := strings.NewReader("{\n \"input\": \"What is the capital of Japan\",\n \"model\": \"LFM2.5-1.2B-Thinking\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("x-project-id", "<api-key>")
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))
}require 'uri'
require 'net/http'
url = URI("https://api.zerogpu.ai/v1/responses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["x-project-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"input\": \"What is the capital of Japan\",\n \"model\": \"LFM2.5-1.2B-Thinking\"\n}"
response = http.request(request)
puts response.read_body"The capital of Japan is **Tokyo**.\n\n**Reasoning:**\n1. Japan's political, cultural, and economic center is located in Tokyo.\n2. Historically, Tokyo has served as Japan's..."{}Body
application/json
Model identifier (fixed for this playground). Use request examples to change use cases.
Allowed value:
"LFM2.5-1.2B-Thinking"Example:
"LFM2.5-1.2B-Thinking"
Multi-line text or document content to send to the model.
Required string length:
1 - 131072Response
Success
The response is of type object.
⌘I

