OBJECT

LlmModelCategories

Query result of LLM models with metadata.

link GraphQL Schema definition

1type LlmModelCategories {
2
3# Total count of LLM models matching the query.
4totalCount: Int!
5
6# The list of LLM models.
7categories: [LlmModelCategory!]!
8
9# Page info of the query. See PageInfo for full description.
10pageInfo: PageInfo!
11
12}

link Required by