Effective graph configuration
curl --request GET \
--url http://127.0.0.1:8900/v1/configimport requests
url = "http://127.0.0.1:8900/v1/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://127.0.0.1:8900/v1/config', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8900",
CURLOPT_URL => "http://127.0.0.1:8900/v1/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://127.0.0.1:8900/v1/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://127.0.0.1:8900/v1/config")
.asString();require 'uri'
require 'net/http'
url = URI("http://127.0.0.1:8900/v1/config")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"llm_provider": "<string>",
"deep_think_llm": "<string>",
"quick_think_llm": "<string>",
"max_debate_rounds": 123,
"max_risk_discuss_rounds": 123,
"online_tools": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "<string>"
}Service
Effective graph configuration
The configuration in force, with anything credential-shaped removed.
GET
/
v1
/
config
Effective graph configuration
curl --request GET \
--url http://127.0.0.1:8900/v1/configimport requests
url = "http://127.0.0.1:8900/v1/config"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://127.0.0.1:8900/v1/config', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "8900",
CURLOPT_URL => "http://127.0.0.1:8900/v1/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://127.0.0.1:8900/v1/config"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://127.0.0.1:8900/v1/config")
.asString();require 'uri'
require 'net/http'
url = URI("http://127.0.0.1:8900/v1/config")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"llm_provider": "<string>",
"deep_think_llm": "<string>",
"quick_think_llm": "<string>",
"max_debate_rounds": 123,
"max_risk_discuss_rounds": 123,
"online_tools": true
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"detail": "<string>"
}Headers
Response
Successful Response
The graph configuration actually in force, with credentials removed.
Exposed because a run's cost and behaviour are decided almost entirely by
these values, and reading them from a running service beats inferring them
from whichever .env you think is loaded.