Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: a489669fc7e86db03484ef5a0ae222d9360e72f7 Co-authored-by: echoVic <16428813+echoVic@users.noreply.github.com> Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com> Reviewed-by: @gumadeiras
93 lines
2.1 KiB
TypeScript
93 lines
2.1 KiB
TypeScript
import type { ChatType } from "../channels/chat-type.js";
|
|
import type { SessionEntry } from "../config/sessions.js";
|
|
import type { DeliveryContext } from "../utils/delivery-context.js";
|
|
|
|
export type GatewaySessionsDefaults = {
|
|
modelProvider: string | null;
|
|
model: string | null;
|
|
contextTokens: number | null;
|
|
};
|
|
|
|
export type GatewaySessionRow = {
|
|
key: string;
|
|
kind: "direct" | "group" | "global" | "unknown";
|
|
label?: string;
|
|
displayName?: string;
|
|
derivedTitle?: string;
|
|
lastMessagePreview?: string;
|
|
channel?: string;
|
|
subject?: string;
|
|
groupChannel?: string;
|
|
space?: string;
|
|
chatType?: ChatType;
|
|
origin?: SessionEntry["origin"];
|
|
updatedAt: number | null;
|
|
sessionId?: string;
|
|
systemSent?: boolean;
|
|
abortedLastRun?: boolean;
|
|
thinkingLevel?: string;
|
|
verboseLevel?: string;
|
|
reasoningLevel?: string;
|
|
elevatedLevel?: string;
|
|
sendPolicy?: "allow" | "deny";
|
|
inputTokens?: number;
|
|
outputTokens?: number;
|
|
totalTokens?: number;
|
|
totalTokensFresh?: boolean;
|
|
responseUsage?: "on" | "off" | "tokens" | "full";
|
|
modelProvider?: string;
|
|
model?: string;
|
|
contextTokens?: number;
|
|
deliveryContext?: DeliveryContext;
|
|
lastChannel?: SessionEntry["lastChannel"];
|
|
lastTo?: string;
|
|
lastAccountId?: string;
|
|
};
|
|
|
|
export type GatewayAgentRow = {
|
|
id: string;
|
|
name?: string;
|
|
identity?: {
|
|
name?: string;
|
|
theme?: string;
|
|
emoji?: string;
|
|
avatar?: string;
|
|
avatarUrl?: string;
|
|
};
|
|
};
|
|
|
|
export type SessionPreviewItem = {
|
|
role: "user" | "assistant" | "tool" | "system" | "other";
|
|
text: string;
|
|
};
|
|
|
|
export type SessionsPreviewEntry = {
|
|
key: string;
|
|
status: "ok" | "empty" | "missing" | "error";
|
|
items: SessionPreviewItem[];
|
|
};
|
|
|
|
export type SessionsPreviewResult = {
|
|
ts: number;
|
|
previews: SessionsPreviewEntry[];
|
|
};
|
|
|
|
export type SessionsListResult = {
|
|
ts: number;
|
|
path: string;
|
|
count: number;
|
|
defaults: GatewaySessionsDefaults;
|
|
sessions: GatewaySessionRow[];
|
|
};
|
|
|
|
export type SessionsPatchResult = {
|
|
ok: true;
|
|
path: string;
|
|
key: string;
|
|
entry: SessionEntry;
|
|
resolved?: {
|
|
modelProvider?: string;
|
|
model?: string;
|
|
};
|
|
};
|