OBJECT
LlmModelCategories
Query result of LLM models with metadata.
link GraphQL Schema definition
1 type LlmModelCategories { 2 3 # Total count of LLM models matching the query. 4 : Int! 5 6 # The list of LLM models. 7 : [LlmModelCategory!]! 8 9 # Page info of the query. See PageInfo for full description. 10 : PageInfo! 11 12 }