Skip to Content
Aionis currently ships as a local-first Lite Runtime for developer machines and self-managed deployments.
Using AionisSend Feedback

Send Feedback

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.