AssistantServiceSetParameters Method

Changes the RAG, LLM, and backend parameters.

Definition

Namespace: SuperBuilderWinService.Services
Assembly: IntelAiaService (in IntelAiaService.exe) Version: 1.0.0+2093811f3bac5da092b5ce9c8172233582eee4d5
C#
public override Task<SetParametersResponse> SetParameters(
	SetParametersRequest request,
	ServerCallContext context
)

Parameters

request  SetParametersRequest
Example: { "parameters_json": { "categories": [ { "name": "other", "description": "Application-specific settings", "fields": [ { "name": "conversation_history", "description": "The amount of previous messages to include as context for the next response. Higher value: Improves the assistant's memory of the conversation, but possibly longer response times. Lower value: Assistant will not remember what was said previously, but faster response times.", "default_value": 0, "user_value": 9, "min": 0, "max": 20 } ] } ] } } for complete list of parameters, please referring to AssistantModelConfig
context  ServerCallContext
The gRPC call context.

Return Value

TaskSetParametersResponse
An empty object. Example: {}

See Also