feat: 운영 안정성과 세션 음성 경험 개선
This commit is contained in:
parent
facc4ad2d9
commit
c788343467
95 changed files with 8431 additions and 1785 deletions
|
|
@ -4,6 +4,26 @@
|
|||
*/
|
||||
|
||||
export interface paths {
|
||||
"/admin/engine-capabilities": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
/**
|
||||
* Get Engine Capabilities
|
||||
* @description Return gateway-discovered models and reasoning levels for one provider.
|
||||
*/
|
||||
get: operations["get_engine_capabilities_admin_engine_capabilities_get"];
|
||||
put?: never;
|
||||
post?: never;
|
||||
delete?: never;
|
||||
options?: never;
|
||||
head?: never;
|
||||
patch?: never;
|
||||
trace?: never;
|
||||
};
|
||||
"/admin/engine-config": {
|
||||
parameters: {
|
||||
query?: never;
|
||||
|
|
@ -1420,6 +1440,8 @@ export interface components {
|
|||
engine_url?: string | null;
|
||||
/** Model */
|
||||
model?: string | null;
|
||||
/** Reasoning Effort */
|
||||
reasoning_effort?: string | null;
|
||||
};
|
||||
/** AdminEngineConfigResponse */
|
||||
AdminEngineConfigResponse: {
|
||||
|
|
@ -1428,12 +1450,17 @@ export interface components {
|
|||
* @default false
|
||||
*/
|
||||
durable: boolean;
|
||||
/** Engine Mode */
|
||||
engine_mode: string;
|
||||
/**
|
||||
* Engine Mode
|
||||
* @enum {string}
|
||||
*/
|
||||
engine_mode: "claude_cli" | "claude_api" | "codex_cli" | "agy_cli" | "openai" | "solar";
|
||||
/** Engine Url */
|
||||
engine_url: string;
|
||||
/** Model */
|
||||
model: string;
|
||||
/** Reasoning Effort */
|
||||
reasoning_effort?: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra") | null;
|
||||
/**
|
||||
* Source
|
||||
* @default runtime_default
|
||||
|
|
@ -2151,6 +2178,55 @@ export interface components {
|
|||
*/
|
||||
role: "learner" | "teacher" | "admin";
|
||||
};
|
||||
/** EngineCapabilitiesResponse */
|
||||
EngineCapabilitiesResponse: {
|
||||
/** Available */
|
||||
available: boolean;
|
||||
/** Default Model */
|
||||
default_model?: string | null;
|
||||
/** Default Reasoning Effort */
|
||||
default_reasoning_effort?: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra") | null;
|
||||
/**
|
||||
* Detail
|
||||
* @default
|
||||
*/
|
||||
detail: string;
|
||||
/** Fetched At */
|
||||
fetched_at: number;
|
||||
/** Models */
|
||||
models?: components["schemas"]["EngineModelOption"][];
|
||||
/**
|
||||
* Provider
|
||||
* @enum {string}
|
||||
*/
|
||||
provider: "claude_cli" | "claude_api" | "codex_cli" | "agy_cli" | "openai" | "solar";
|
||||
/**
|
||||
* Source
|
||||
* @enum {string}
|
||||
*/
|
||||
source: "live_cli" | "live_api" | "static_cli" | "unavailable";
|
||||
};
|
||||
/** EngineModelOption */
|
||||
EngineModelOption: {
|
||||
/** Default Reasoning Effort */
|
||||
default_reasoning_effort?: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra") | null;
|
||||
/**
|
||||
* Description
|
||||
* @default
|
||||
*/
|
||||
description: string;
|
||||
/** Id */
|
||||
id: string;
|
||||
/**
|
||||
* Is Default
|
||||
* @default false
|
||||
*/
|
||||
is_default: boolean;
|
||||
/** Label */
|
||||
label: string;
|
||||
/** Reasoning Efforts */
|
||||
reasoning_efforts?: ("low" | "medium" | "high" | "xhigh" | "max" | "ultra")[];
|
||||
};
|
||||
/**
|
||||
* EvaluationSummary
|
||||
* @description 회기 평가 조회 응답(분포 + deep 결과 합본).
|
||||
|
|
@ -3631,6 +3707,8 @@ export interface components {
|
|||
supervisor_rationale?: string | null;
|
||||
/** Theory Mode */
|
||||
theory_mode?: string | null;
|
||||
/** Turn Valence */
|
||||
turn_valence?: components["schemas"]["TurnValencePoint"][];
|
||||
/**
|
||||
* Turns Evaluated
|
||||
* @default 0
|
||||
|
|
@ -4267,6 +4345,16 @@ export interface components {
|
|||
/** Turn Seq */
|
||||
turn_seq: number;
|
||||
};
|
||||
/**
|
||||
* TurnValencePoint
|
||||
* @description deep-loop 턴별 내담자 정서가 — 축어록 seq(1-based) 지목 + v(−1~+1).
|
||||
*/
|
||||
TurnValencePoint: {
|
||||
/** Seq */
|
||||
seq: number;
|
||||
/** V */
|
||||
v: number;
|
||||
};
|
||||
/** UserPreferencesPatch */
|
||||
UserPreferencesPatch: {
|
||||
notifications?: components["schemas"]["NotificationPreferences"] | null;
|
||||
|
|
@ -4633,6 +4721,42 @@ export interface components {
|
|||
}
|
||||
export type $defs = Record<string, never>;
|
||||
export interface operations {
|
||||
get_engine_capabilities_admin_engine_capabilities_get: {
|
||||
parameters: {
|
||||
query?: {
|
||||
engine_mode?: string | null;
|
||||
engine_url?: string | null;
|
||||
force?: boolean;
|
||||
};
|
||||
header?: never;
|
||||
path?: never;
|
||||
cookie?: {
|
||||
"__Host-vignette_sid"?: string | null;
|
||||
vignette_sid?: string | null;
|
||||
};
|
||||
};
|
||||
requestBody?: never;
|
||||
responses: {
|
||||
/** @description Successful Response */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["EngineCapabilitiesResponse"];
|
||||
};
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["HTTPValidationError"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
get_engine_config_admin_engine_config_get: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue