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