ConceptsOptions
public struct ConceptsOptions : Codable, Equatable
Returns high-level concepts in the content. For example, a research paper about deep learning might return the concept, “Artificial Intelligence” although the term is not mentioned. Supported languages: English, French, German, Italian, Japanese, Korean, Portuguese, Spanish.
-
Maximum number of concepts to return.
Declaration
Swift
public var limit: Int?
-
Initialize a
ConceptsOptions
with member variables.Declaration
Swift
public init( limit: Int? = nil )
Parameters
limit
Maximum number of concepts to return.
Return Value
An initialized
ConceptsOptions
.