Skip to Content
Aionis v0.3.2 is the current Runtime baseline for SDK/API hosts, MCP clients, plugins, Substrate-backed recall, and self-managed agent loops.

Send Feedback

Guide page — how to use this step in your SDK or loop. For the HTTP endpoint parameters, see POST /v1/feedback. For the concept behind attribution, see Feedback Attribution.

Feedback closes the admission loop. Aionis only accepts attribution to memory that was exposed by a guide trace.

SDK Example

import { feedbackFromGuide } from "@aionis/sdk"; const usedMemoryIds = result.usedMemoryIds ?? []; if (usedMemoryIds.length > 0) { await aionis.feedback(feedbackFromGuide({ guide, run_id: result.runId, outcome: result.ok ? "positive" : "negative", reason: result.summary, used_memory_ids: usedMemoryIds, used_surface: "use_now", })); }

Why Attribution Is Strict

RuleReason
Use guide_trace_idTies outcome to a concrete context compilation.
Attribute only exposed memory IDsPrevents fake or retrospective credit assignment.
Include outcomeLets Aionis learn what helped or harmed.
Include reasonImproves audit and future policy analysis.

This is one of Aionis’ strongest product differences: the system records not just what was retrieved, but which admitted memory was associated with the actual result.