Table of Contents

Class CreateThreadRequest

Namespace
OpenAI.Threads
Assembly
OpenAI-DotNet.dll
public sealed class CreateThreadRequest
Inheritance
CreateThreadRequest
Inherited Members

Constructors

CreateThreadRequest(IEnumerable<Message>, ToolResources, IReadOnlyDictionary<string, string>)

Constructor.

public CreateThreadRequest(IEnumerable<Message> messages = null, ToolResources toolResources = null, IReadOnlyDictionary<string, string> metadata = null)

Parameters

messages IEnumerable<Message>

A list of messages to start the thread with.

toolResources ToolResources

A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the code_interpreter tool requires a list of file IDs, while the file_search tool requires a list of vector store IDs.

metadata IReadOnlyDictionary<string, string>

Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maximum of 512 characters long.

CreateThreadRequest(string)

public CreateThreadRequest(string message)

Parameters

message string

Properties

Messages

A list of messages to start the thread with.

[JsonPropertyName("messages")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public IReadOnlyList<Message> Messages { get; }

Property Value

IReadOnlyList<Message>

Metadata

Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maximum of 512 characters long.

[JsonPropertyName("metadata")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public IReadOnlyDictionary<string, string> Metadata { get; }

Property Value

IReadOnlyDictionary<string, string>

ToolResources

A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the code_interpreter tool requires a list of file IDs, while the file_search tool requires a list of vector store IDs.

[JsonPropertyName("tool_resources")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ToolResources ToolResources { get; }

Property Value

ToolResources

Operators

implicit operator CreateThreadRequest(string)

public static implicit operator CreateThreadRequest(string message)

Parameters

message string

Returns

CreateThreadRequest