Table of Contents

Class XSearch

Namespace
Glitch9.AIDevKit.XAI
public class XSearch : Tool
Inheritance
object
XSearch

Properties

AllowedXHandles

Optional. List of X Handles of the users from whom to consider the posts. Note: This parameter cannot be set with excluded_x_handles.

public List<string> AllowedXHandles { get; set; }

Property Value

List<string>

EnableImageUnderstanding

Optional. Enable image understanding during X search.

public bool? EnableImageUnderstanding { get; set; }

Property Value

bool?

EnableVideoUnderstanding

Optional. Enable video understanding during X search.

public bool? EnableVideoUnderstanding { get; set; }

Property Value

bool?

ExcludedXHandles

Optional. List of X Handles of the users from whom to exclude the posts. Note: This parameter cannot be set with allowed_x_handles.

public List<string> ExcludedXHandles { get; set; }

Property Value

List<string>

FromDate

Optional. Date from which to consider the results in ISO-8601 YYYY-MM-DD. See https://en.wikipedia.org/wiki/ISO_8601.

public string FromDate { get; set; }

Property Value

string

ToDate

Optional. Date up to which to consider the results in ISO-8601 YYYY-MM-DD. See https://en.wikipedia.org/wiki/ISO_8601.

public string ToDate { get; set; }

Property Value

string

Type

Required. The type of the tool. Examples: Tool.Function, Tool.FileSearch, Tool.ComputerUsePreview, Tool.WebSearch

public override ToolType Type { get; }

Property Value

ToolType