Class AgentAssistantsSettings
Configuration settings for the OpenAI Assistants API.
Inherited Members
Namespace: Glitch9.AIDevKit.Agents
Assembly: Glitch9.AIDevKit.Agent.dll
Syntax
[Serializable]
public sealed class AgentAssistantsSettings
Properties
| Edit this page View SourceAssistantId
Gets the ID of the OpenAI Assistant to use.
Declaration
public string AssistantId { get; }
Property Value
| Type | Description |
|---|---|
| string |
AssistantName
Gets the display name of the OpenAI Assistant.
Declaration
public string AssistantName { get; }
Property Value
| Type | Description |
|---|---|
| string |
EnableCodeInterpreter
Gets whether the Code Interpreter tool is enabled for this assistant.
Declaration
public bool EnableCodeInterpreter { get; }
Property Value
| Type | Description |
|---|---|
| bool |
EnableFileSearch
Gets whether the File Search tool is enabled for this assistant.
Declaration
public bool EnableFileSearch { get; }
Property Value
| Type | Description |
|---|---|
| bool |
RunPollingDelayMs
Gets the initial delay in milliseconds before starting to poll for run status.
Declaration
public int RunPollingDelayMs { get; }
Property Value
| Type | Description |
|---|---|
| int |
RunPollingIntervalMs
Gets the interval in milliseconds between run status polling attempts.
Declaration
public int RunPollingIntervalMs { get; }
Property Value
| Type | Description |
|---|---|
| int |
RunPollingTimeoutSec
Gets the timeout in seconds for run polling operations.
Declaration
public int RunPollingTimeoutSec { get; }
Property Value
| Type | Description |
|---|---|
| int |