Search Results for

    Show / Hide Table of Contents

    Class Reasoning

    Inheritance
    object
    ConversationItem
    Reasoning
    Implements
    IPrompt
    IValidatable
    IHasId<string>
    ITextSource
    Inherited Members
    ConversationItem.Id
    ConversationItem.Type
    ConversationItem.Status
    ConversationItem.GetPromptText()
    ConversationItem.IsValid()
    ConversationItem.Validate()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Glitch9.AIDevKit
    Assembly: Glitch9.AIDevKit.dll
    Syntax
    public class Reasoning : ConversationItem, IPrompt, IValidatable, IHasId<string>, ITextSource

    Constructors

    | Edit this page View Source

    Reasoning()

    Declaration
    public Reasoning()
    | Edit this page View Source

    Reasoning(string, string)

    Declaration
    public Reasoning(string content, string signature = null)
    Parameters
    Type Name Description
    string content
    string signature

    Properties

    | Edit this page View Source

    Content

    Optional. Reasoning text content.

    Declaration
    [JsonProperty("content")]
    public List<GeneratedText> Content { get; set; }
    Property Value
    Type Description
    List<GeneratedText>
    | Edit this page View Source

    EncryptedContent

    Optional. The encrypted content of the reasoning item - populated when a response is generated with reasoning.encrypted_content in the include parameter.

    Declaration
    [JsonProperty("encrypted_content")]
    public string EncryptedContent { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Signature

    Anthropic-specific signature to verify the integrity and authenticity of the reasoning item. This is populated when a response is generated with reasoning.signature in the include parameter.

    Declaration
    [DomainProperty("signature")]
    public string Signature { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Summary

    Required. Reasoning summary content.

    Declaration
    [JsonProperty("summary")]
    public List<GeneratedText> Summary { get; set; }
    Property Value
    Type Description
    List<GeneratedText>

    Methods

    | Edit this page View Source

    GetTextSource()

    Declaration
    public string GetTextSource()
    Returns
    Type Description
    string
    | Edit this page View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Overrides
    object.ToString()

    Implements

    IPrompt
    IValidatable
    IHasId<TId>
    ITextSource

    Extension Methods

    UnifiedApiCallerExtensions.GENResponse(ConversationItem)
    ConversationItemExtensions.GetReasoningText(Reasoning)
    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    CoreLibTypeExtensions.GetIdOrNull(IHasId<string>)
    CoreLibTypeExtensions.IsNullOrEmptyId(IHasId<string>)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation