Table of Contents

Class LemurQuestion

Namespace
AssemblyAI.Lemur
Assembly
AssemblyAI.dll
public record LemurQuestion : IEquatable<LemurQuestion>
Inheritance
LemurQuestion
Implements
Inherited Members

Properties

AnswerFormat

How you want the answer to be returned. This can be any text. Can't be used with answer_options. Examples: "short sentence", "bullet points"

[JsonPropertyName("answer_format")]
public string? AnswerFormat { get; set; }

Property Value

string

AnswerOptions

What discrete options to return. Useful for precise responses. Can't be used with answer_format. Example: ["Yes", "No"]

[JsonPropertyName("answer_options")]
public IEnumerable<string>? AnswerOptions { get; set; }

Property Value

IEnumerable<string>

Context

Any context about the transcripts you wish to provide. This can be a string or any object.

[JsonPropertyName("context")]
public OneOf<string, object>? Context { get; set; }

Property Value

OneOf<string, object>?

Question

The question you wish to ask. For more complex questions use default model.

[JsonPropertyName("question")]
public required string Question { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.