interface SessionsPythonREPLToolParams {
    poolManagementEndpoint: string;
    azureADTokenProvider?: (() => Promise<string>);
    sessionId?: string;
}

Properties

poolManagementEndpoint: string

The endpoint of the pool management service.

azureADTokenProvider?: (() => Promise<string>)

A function that returns the access token to be used for authentication. If not provided, a default implementation that uses the DefaultAzureCredential will be used.

Type declaration

    • (): Promise<string>
    • Returns Promise<string>

      The access token to be used for authentication.

sessionId?: string

The session ID. If not provided, a new session ID will be generated.