Interface IAIAssistantConfiguration
Configuration for the AI Assistant.
Namespace: Nutrient.Api.AIAssistant
Assembly: Api.dll
Syntax
public interface IAIAssistantConfiguration
Properties
| Edit this page View SourceBackendURL
The URL that hosts AI Assistant service. e.g. 'https://localhost:4000'.
Declaration
string BackendURL { get; set; }
Property Value
Type | Description |
---|---|
string |
JWT
The JWT token to authenticate the user.
Declaration
string JWT { get; set; }
Property Value
Type | Description |
---|---|
string |
SessionID
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.
Declaration
string SessionID { get; set; }
Property Value
Type | Description |
---|---|
string |
UserID
An optional user ID for the current user. This ID should be unique for each user and should use alphanumeric characters only.
Declaration
string? UserID { get; set; }
Property Value
Type | Description |
---|---|
string |