Skip to main content
POST
/
v1
/
flow
/
alignment
/
generate
Generate training pairs
curl --request POST \
  --url https://flow.seekr.com/v1/flow/alignment/generate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instructions": "<string>",
  "files": [
    "<string>"
  ],
  "system_prompt": "<string>",
  "type": "principle",
  "vector_database_id": "<string>"
}
'
import requests

url = "https://flow.seekr.com/v1/flow/alignment/generate"

payload = {
"instructions": "<string>",
"files": ["<string>"],
"system_prompt": "<string>",
"type": "principle",
"vector_database_id": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
instructions: '<string>',
files: ['<string>'],
system_prompt: '<string>',
type: 'principle',
vector_database_id: '<string>'
})
};

fetch('https://flow.seekr.com/v1/flow/alignment/generate', 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://flow.seekr.com/v1/flow/alignment/generate",
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([
'instructions' => '<string>',
'files' => [
'<string>'
],
'system_prompt' => '<string>',
'type' => 'principle',
'vector_database_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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://flow.seekr.com/v1/flow/alignment/generate"

payload := strings.NewReader("{\n \"instructions\": \"<string>\",\n \"files\": [\n \"<string>\"\n ],\n \"system_prompt\": \"<string>\",\n \"type\": \"principle\",\n \"vector_database_id\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "<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))

}
HttpResponse<String> response = Unirest.post("https://flow.seekr.com/v1/flow/alignment/generate")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"instructions\": \"<string>\",\n \"files\": [\n \"<string>\"\n ],\n \"system_prompt\": \"<string>\",\n \"type\": \"principle\",\n \"vector_database_id\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://flow.seekr.com/v1/flow/alignment/generate")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"instructions\": \"<string>\",\n \"files\": [\n \"<string>\"\n ],\n \"system_prompt\": \"<string>\",\n \"type\": \"principle\",\n \"vector_database_id\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "stopped_at": "2023-11-07T05:31:56Z",
  "current_step": "<string>",
  "step_progress": 123,
  "progress": 123,
  "estimated_completion_at": "2023-11-07T05:31:56Z",
  "eta_minutes": 123,
  "status_message": "<string>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

Authorization
string
header
required

Your Seekr API key, sent in the Authorization header with no 'Bearer' prefix.

Body

application/json
instructions
string
required

Task description/instructions for the alignment task

files
string[]
required

List of file ids to use for alignment

system_prompt
string | null

Optional system prompt baked into the generated dataset's system role on every conversation. If omitted, one is generated from instructions and the recursive document summary.

type
enum<string>
default:principle

Type of alignment task (principle or context_data)

Available options:
principle,
context_data
vector_database_id
string | null

Optional vector database id to use for context retrieval during context_data alignment

Response

Successful Response

id
string
required
created_at
string<date-time>
required
status
enum<string>
required
Available options:
pending,
queued,
running,
cancelled,
failed,
completed,
stopped
updated_at
string<date-time> | null
completed_at
string<date-time> | null
stopped_at
string<date-time> | null
current_step
string | null

The processing step the job is currently working on. null until the job starts running.

step_progress

Progress through the current step. null when no step is in progress.

progress
number | null

Overall completion of the job across all steps. null until progress can be calculated.

estimated_completion_at
string<date-time> | null

Projected completion timestamp (UTC). null until enough progress data is available to produce an estimate.

eta_minutes
integer | null

Estimated number of minutes remaining until the job completes. null until an estimate is available.

status_message
string | null

Human-readable description of the job's current state, suitable for display to end users.

Last modified on June 18, 2026