| Name | Type | Description | Notes |
|---|---|---|---|
| Message | string | The user's message to the agent | |
| SessionId | Pointer to string | Optional session ID to continue a conversation | [optional] |
| UserId | Pointer to string | Optional user identifier for session isolation | [optional] |
| Stream | Pointer to bool | Whether to stream the response (SSE) | [optional] [default to false] |
| Async | Pointer to bool | Enable async/durable execution mode. When true, returns 202 with pollUrl. Use for long-running agent tasks. | [optional] [default to false] |
| System | Pointer to string | Optional additional system prompt (appended to agent's configured prompt) | [optional] |
| LongContext | Pointer to bool | Per-request override to force 1M context window routing | [optional] [default to false] |
| MaxToolIterations | Pointer to int32 | Maximum tool auto-execution iterations for this request | [optional] |
| AllowedCollections | Pointer to []string | Per-request override for vector DB collections the agent can query | [optional] |
func NewChatWithAIAgentRequest(message string, ) *ChatWithAIAgentRequest
NewChatWithAIAgentRequest instantiates a new ChatWithAIAgentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewChatWithAIAgentRequestWithDefaults() *ChatWithAIAgentRequest
NewChatWithAIAgentRequestWithDefaults instantiates a new ChatWithAIAgentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ChatWithAIAgentRequest) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetMessageOk() (*string, bool)
GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *ChatWithAIAgentRequest) GetSessionId() string
GetSessionId returns the SessionId field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetSessionIdOk() (*string, bool)
GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetSessionId(v string)
SetSessionId sets SessionId field to given value.
func (o *ChatWithAIAgentRequest) HasSessionId() bool
HasSessionId returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetUserId() string
GetUserId returns the UserId field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetUserIdOk() (*string, bool)
GetUserIdOk returns a tuple with the UserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetUserId(v string)
SetUserId sets UserId field to given value.
func (o *ChatWithAIAgentRequest) HasUserId() bool
HasUserId returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetStream() bool
GetStream returns the Stream field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetStreamOk() (*bool, bool)
GetStreamOk returns a tuple with the Stream field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetStream(v bool)
SetStream sets Stream field to given value.
func (o *ChatWithAIAgentRequest) HasStream() bool
HasStream returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetAsync() bool
GetAsync returns the Async field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetAsyncOk() (*bool, bool)
GetAsyncOk returns a tuple with the Async field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetAsync(v bool)
SetAsync sets Async field to given value.
func (o *ChatWithAIAgentRequest) HasAsync() bool
HasAsync returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetSystem() string
GetSystem returns the System field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetSystemOk() (*string, bool)
GetSystemOk returns a tuple with the System field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetSystem(v string)
SetSystem sets System field to given value.
func (o *ChatWithAIAgentRequest) HasSystem() bool
HasSystem returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetLongContext() bool
GetLongContext returns the LongContext field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetLongContextOk() (*bool, bool)
GetLongContextOk returns a tuple with the LongContext field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetLongContext(v bool)
SetLongContext sets LongContext field to given value.
func (o *ChatWithAIAgentRequest) HasLongContext() bool
HasLongContext returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetMaxToolIterations() int32
GetMaxToolIterations returns the MaxToolIterations field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetMaxToolIterationsOk() (*int32, bool)
GetMaxToolIterationsOk returns a tuple with the MaxToolIterations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetMaxToolIterations(v int32)
SetMaxToolIterations sets MaxToolIterations field to given value.
func (o *ChatWithAIAgentRequest) HasMaxToolIterations() bool
HasMaxToolIterations returns a boolean if a field has been set.
func (o *ChatWithAIAgentRequest) GetAllowedCollections() []string
GetAllowedCollections returns the AllowedCollections field if non-nil, zero value otherwise.
func (o *ChatWithAIAgentRequest) GetAllowedCollectionsOk() (*[]string, bool)
GetAllowedCollectionsOk returns a tuple with the AllowedCollections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ChatWithAIAgentRequest) SetAllowedCollections(v []string)
SetAllowedCollections sets AllowedCollections field to given value.
func (o *ChatWithAIAgentRequest) HasAllowedCollections() bool
HasAllowedCollections returns a boolean if a field has been set.