Type Aliases
SessionCreateRequest
Was this page helpful?
⌘I
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
type SessionCreateRequest = object;
optional clientVersion: string | null;
optional experimentId: string | null;
optional externalId: string | null;
optional loggingMethod: LoggingMethod;
optional logStreamId: string | null;
optional metricsTestingId: string | null;
optional name: string | null;
optional previousSessionId: string | null;
optional reliable: boolean;
optional userMetadata:
| {
[key: string]: string;
}
| null;
Was this page helpful?
