GenSearchMutation
description
Initiates GenSearch operations with different processing depths.
type GenSearchMutation {
fast(
input: GenSearchInput!
): GenSearchResult
thinkLonger(
input: GenSearchInput!
): GenSearchResult
deepResearch(
input: GenSearchInput!
): GenSearchResult
}
Fields
GenSearchMutation.fast
● GenSearchResult
object
Standard GenSearch with balanced speed and thoroughness. @exposed
GenSearchMutation.fast.input
●GenSearchInput!
non-null input
GenSearchMutation.thinkLonger
● GenSearchResult
object
Enhanced GenSearch with extended reasoning for complex queries. @exposed
GenSearchMutation.thinkLonger.input
●GenSearchInput!
non-null input
GenSearchMutation.deepResearch
● GenSearchResult
object
Comprehensive GenSearch with thorough analysis and extensive research. @exposed
GenSearchMutation.deepResearch.input
●GenSearchInput!
non-null input
Returned by
genSearch
mutation