About searching GitHub Models
You can find models on GitHub Models in two ways:
- Search from GitHub Marketplace.
- Search across all of GitHub and then filter the results to Marketplace.
Searching in GitHub Marketplace
-
To open GitHub Marketplace, in the top-left corner of GitHub, select , then click Marketplace.
-
Type any keywords and
type:models
and press Enter.
Searching across GitHub
Anytime you search across all of GitHub, you can filter the results to see matching models from GitHub Marketplace.
- Navigate to https://github.com/search.
- Type any keywords and press Enter.
- To see all available filters for your search, in the "Filter by" sidebar, click More.
- To see results from GitHub Models, click Marketplace.
Searching within a specific field
The in
qualifier used in conjunction with search text finds models that match the specified text in that field. Possible fields include tags
, license
, name
, description
, transparency
, and task
.
Qualifier | Example |
---|---|
in:FIELD | in:tags agents matches models with the 'agents' tag. |
in:FIELD | in:license distribute matches models who mention 'distribute' in their license. |
in:FIELD | in:transparency "responsible ai" matches models who mention 'responsible ai' in their transparency information. |
Search by category
The category
qualifier finds models that are tagged with a specific term.
Qualifier | Example |
---|---|
category:CATEGORY | category:multilingual matches models in the multilingual category. |
category:CATEGORY | category:"large context" matches models in the large context category. |
Search by input modality
The input-modality
qualifier finds models that support a particular medium for providing input. Possible modalities include text
, image
, and audio
.
Qualifier | Example |
---|---|
input-modality:MODALITY | input-modality:text matches models that support text input. |
Search by output modality
The output-modality
qualifier finds models that support a particular medium for providing output. Possible modalities include text
and embeddings
.
Qualifier | Example |
---|---|
output-modality:MODALITY | output-modality:embeddings matches models that support embedding output. |
Search by language
The language
qualifier finds models that support a specified human language.
Qualifier | Example |
---|---|
language:TWO_CHARACTER_CODE | language:es matches models that support Spanish. |
language:NAME | language:arabic matches models that support Arabic. |
Search by task
The task
qualifier finds models that can be used to accomplish a specific task.
Qualifier | Example |
---|---|
task:TASK | task:embeddings matches models that support embedding. |
task:TASK | task:chat-completion matches models that support interaction via chat. |
Search by publisher
The publisher
qualifier finds models released by a particular publisher.
Qualifier | Example |
---|---|
publisher:PUBLISHER_NAME | publisher:"Mistral AI" matches models by Mistral AI. |
Search by input token limit
The input-tokens
qualifier finds models with an input token limit above or below a particular value, or within a range.
Qualifier | Example |
---|---|
input-tokens:VALUE | input-tokens:>10000 matches models with an input token limit greater than 10,000. |
input-tokens:VALUE | input-tokens:15000..20000 matches models with an input token limit between 15,000 and 20,000. |
Search by output token limit
The output-tokens
qualifier finds models with an output token limit above or below a particular value, or within a range.
Qualifier | Example |
---|---|
output-tokens:VALUE | output-tokens:<8000 matches models with an output token limit less than 8,000. |
output-tokens:VALUE | output-tokens:15000..20000 matches models with an output token limit between 15,000 and 20,000. |
Search by rate limit tier
The rate-limit-tier
qualifier finds models with a particular tier of rate limit. Possible tiers include low
, high
, and custom
.
Qualifier | Example |
---|---|
rate-limit-tier:TIER | rate-limit-tier:low matches models with a low rate limit tier. |
Search by license type
The license
qualifier finds models that use a particular license.
Qualifier | Example |
---|---|
license:LICENSE | license:mit matches models that use the MIT license. |
license:LICENSE | license:custom matches models that use a custom license. |
Sorting results
The sort
qualifier is used to sort results. It can be used alone or combined with other qualifiers and search text.
Qualifier | Example |
---|---|
sort:FIELD | sort:created-desc publisher:meta matches models published by Meta, sorted with the most recently added first. |
sort:FIELD | sort:name-asc in:task chat-completion matches models that allow chat completion, sorted alphabetically. |