Nutrient Web SDK
    Preparing search index...

    Type Alias AIAssistantConfiguration

    Configuration for the AI Assistant.

    {
    sessionId: 'session-id',
    jwt: 'xxx.xxx.xxx'
    backendUrl: 'https://localhost:4000',
    }
    type AIAssistantConfiguration = {
        backendUrl: string;
        jwt: string;
        sessionId: string;
        userId?: string;
    }
    Index

    Properties

    backendUrl: string

    The URL that hosts AI Assistant service. e.g. https://localhost:4000.

    jwt: string

    The JWT token to authenticate the user.

    sessionId: string

    The session to reopen, or an ID for the new session to create. This ID should be unique for each session and should use alphanumeric characters only.

    userId?: string

    An optional user ID for the current user. This ID should be unique for each user and should use alphanumeric characters only.