You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-**Description:**: This action allows you to search the web. You can use search operators like site:reddit.com when needed.
-**Action**: `web_search`
-**Arguments**:
-`query`: Query : The search query to look up on the web. (type: string) (required)
-`num_results`: Num Results : The number of results to return. It is optional, default 10, max is 30. (type: integer)(optional) (default: 10)
### Web Search With Snippets
-**Description:**: Search the internet and return long snippets from each search result. Useful for quickly confirming a fact without reading the entire page.
-**Action**: `web_search_with_snippets`
-**Arguments**:
-`query`: Query : Search query; you may use operators like site:, filetype:, "exact" for precision. (type: string) (required)
### X Keyword Search
-**Description:**: Advanced search tool for X Posts.
-**Action**: `x_keyword_search`
-**Arguments**:
-`query`: Query : The search query string for X advanced search. Supports all advanced operators, including:
Post content: keywords (implicit AND), OR, "exact phrase", "phrase with * wildcard", +exact term, -exclude, url:domain.
From/to/mentions: from:user, to:user, @user, list:id or list:slug.
Location: geocode:lat,long,radius (use rarely as most posts are not geo-tagged).
Most filters can be negated with -. Use parentheses for grouping. Spaces mean AND; OR must be uppercase.
Example query:
(puppy OR kitten) (sweet OR cute) filter:images min_faves:10 (type: string) (required)
-`limit`: Limit : The number of posts to return. (type: integer)(optional) (default: 10)
-`mode`: Mode : Sort by Top or Latest. The default is Top. You must output the mode with a capital first letter. (type: string)(optional) (can be any one of: Top, Latest) (default: Top)
### X Semantic Search
-**Description:**: Fetch X posts that are relevant to a semantic search query.
-**Action**: `x_semantic_search`
-**Arguments**:
-`query`: Query : A semantic search query to find relevant related posts (type: string) (required)
-`limit`: Limit : Number of posts to return. (type: integer)(optional) (default: 10)
-`from_date`: From Date : Optional: Filter to receive posts from this date onwards. Format: YYYY-MM-DD(any of: string, null)(optional) (default: None)
-`to_date`: To Date : Optional: Filter to receive posts up to this date. Format: YYYY-MM-DD(any of: string, null)(optional) (default: None)
-`exclude_usernames`: Exclude Usernames : Optional: Filter to exclude these usernames.(any of: array, null)(optional) (default: None)
-`usernames`: Usernames : Optional: Filter to only include these usernames.(any of: array, null)(optional) (default: None)
-`min_score_threshold`: Min Score Threshold : Optional: Minimum relevancy score threshold for posts. (type: number)(optional) (default: 0.18)
### X User Search
-**Description:**: Search for an X user given a search query.
-**Action**: `x_user_search`
-**Arguments**:
-`query`: Query : the name or account you are searching for (type: string) (required)
-`count`: Count : number of users to return. (type: integer)(optional) (default: 3)