Gateway: add timeout session status
This commit is contained in:
parent
61c9cc812c
commit
f7e95ca0ff
@ -44,7 +44,7 @@ export type SessionListDeliveryContext = {
|
|||||||
accountId?: string;
|
accountId?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
|
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
|
||||||
|
|
||||||
export type SessionListRow = {
|
export type SessionListRow = {
|
||||||
key: string;
|
key: string;
|
||||||
|
|||||||
@ -13,7 +13,7 @@ export type GatewaySessionsDefaults = {
|
|||||||
contextTokens: number | null;
|
contextTokens: number | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
|
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
|
||||||
|
|
||||||
export type GatewaySessionRow = {
|
export type GatewaySessionRow = {
|
||||||
key: string;
|
key: string;
|
||||||
|
|||||||
@ -364,7 +364,7 @@ export type AgentsFilesSetResult = {
|
|||||||
file: AgentFileEntry;
|
file: AgentFileEntry;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SessionRunStatus = "running" | "done" | "failed" | "killed";
|
export type SessionRunStatus = "running" | "done" | "failed" | "killed" | "timeout";
|
||||||
|
|
||||||
export type GatewaySessionRow = {
|
export type GatewaySessionRow = {
|
||||||
key: string;
|
key: string;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user