Package portable grid agent operation (#134)
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m48s
CI / required (push) Failing after 51s

This commit is contained in:
2026-08-18 12:27:07 +02:00
parent fe8d0119ef
commit 00707fd8df
14 changed files with 693 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
{
"schema_version": 1,
"integrated": false,
"split": false,
"llm": {

View File

@@ -0,0 +1,20 @@
{
"schema_version": 1,
"integrated": true,
"split": false,
"llm": {
"endpoint_url": "https://llm.example.invalid/v1/chat/completions"
},
"grid": {
"login_url": "https://grid.example.invalid/login",
"avatar_name": "Service Avatar"
},
"secret_files": {
"llm_api_key": "secrets/llm-api-key",
"grid_password": "secrets/grid-password"
},
"authorized_avatar_uuids": [
"00000000-0000-4000-8000-000000000001"
],
"storage_path": "data/grid-agent"
}

View File

@@ -0,0 +1,25 @@
{
"schema_version": 1,
"integrated": false,
"split": true,
"llm": {
"endpoint_url": "https://llm.example.invalid/v1/chat/completions"
},
"grid": {
"login_url": "https://grid.example.invalid/login",
"avatar_name": "Service Avatar"
},
"secret_files": {
"llm_api_key": "secrets/llm-api-key",
"grid_password": "secrets/grid-password",
"control_operator_token": "secrets/control-operator-token",
"control_observer_token": "secrets/control-observer-token"
},
"authorized_avatar_uuids": [
"00000000-0000-4000-8000-000000000001"
],
"storage_path": "data/grid-agent",
"control": {
"listen": "127.0.0.1:9764"
}
}