Searching GitHub Models
You can search for models that are available on GitHub Models.
In this article
- About searching GitHub Models
- Searching in GitHub Marketplace
- Searching across GitHub
- Searching within a specific field
- Search by category
- Search by input modality
- Search by output modality
- Search by language
- Search by task
- Search by publisher
- Search by input token limit
- Search by output token limit
- Search by rate limit tier
- Search by license type
- Sorting results
- Further reading
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 pressEnter.
Searching across GitHub
Anytime you search across all of GitHub, you can filter the results to see matching models from GitHub Marketplace.
- Navigate tohttps://github.com/search.
- Type any keywords and pressEnter.
- To see all available filters for your search, in the "Filter by" sidebar, clickMore.
- To see results from GitHub Models, clickMarketplace.
Searching within a specific field
Thein
qualifier used in conjunction with search text finds models that match the specified text in that field. Possible fields includetags
,license
,name
,description
,transparency
, andtask
.
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
Thecategory
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
Theinput-modality
qualifier finds models that support a particular medium for providing input. Possible modalities includetext
,image
, andaudio
.
Qualifier | Example |
---|---|
input-modality:MODALITY | input-modality:text matches models that support text input. |
Search by output modality
Theoutput-modality
qualifier finds models that support a particular medium for providing output. Possible modalities includetext
andembeddings
.
Qualifier | Example |
---|---|
output-modality:MODALITY | output-modality:embeddings matches models that support embedding output. |
Search by language
Thelanguage
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
Thetask
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
Thepublisher
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
Theinput-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
Theoutput-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
Therate-limit-tier
qualifier finds models with a particular tier of rate limit. Possible tiers includelow
,high
, andcustom
.
Qualifier | Example |
---|---|
rate-limit-tier:TIER | rate-limit-tier:low matches models with a low rate limit tier. |
Search by license type
Thelicense
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
Thesort
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. |