Skip to content

Commit 61479a0

Browse files
cheshire137mchammer01SiaraMist
authored
Add Models search page (#54995)
Co-authored-by: mc <[email protected]> Co-authored-by: Siara <[email protected]>
1 parent 79bc06e commit 61479a0

File tree

3 files changed

+144
-1
lines changed

3 files changed

+144
-1
lines changed

content/search-github/searching-on-github/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ children:
1919
- /searching-issues-and-pull-requests
2020
- /searching-discussions
2121
- /searching-github-marketplace
22+
- /searching-github-models
2223
- /searching-users
2324
- /searching-for-packages
2425
- /searching-wikis

content/search-github/searching-on-github/searching-github-marketplace.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can find apps and actions on {% data variables.product.prodname_marketplace
2727

2828
## Searching across {% data variables.product.prodname_dotcom %}
2929

30-
Anytime you search across all of {% data variables.product.prodname_dotcom %}, you can filter the results to see matching apps and actions from {% data variables.product.prodname_marketplace %}.
30+
Anytime you search across all of {% data variables.product.prodname_dotcom %}, you can filter the results to see matching apps, actions, and models from {% data variables.product.prodname_marketplace %}.
3131

3232
1. Navigate to https://github.com/search.
3333
1. Type any keywords and press **Enter**.
@@ -36,6 +36,9 @@ Anytime you search across all of {% data variables.product.prodname_dotcom %}, y
3636

3737
## Further reading
3838

39+
{%- ifversion fpt %}
40+
* [AUTOTITLE](/search-github/searching-on-github/searching-github-models)
41+
{%- endif %}
3942
* [AUTOTITLE](/actions/learn-github-actions/finding-and-customizing-actions)
4043
* [AUTOTITLE](/apps/using-github-apps/installing-a-github-app-from-github-marketplace-for-your-personal-account)
4144
* [AUTOTITLE](/apps/using-github-apps/installing-a-github-app-from-github-marketplace-for-your-organizations)
Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
---
2+
title: Searching GitHub Models
3+
intro: 'You can search for models that are available on {% data variables.product.prodname_github_models %}.'
4+
versions:
5+
fpt: '*'
6+
topics:
7+
- GitHub search
8+
shortTitle: Search GitHub Models
9+
---
10+
11+
## About searching {% data variables.product.prodname_github_models %}
12+
13+
You can find models on {% data variables.product.prodname_github_models %} in two ways:
14+
15+
* Search from {% data variables.product.prodname_marketplace %}.
16+
* Search across all of {% data variables.product.prodname_dotcom %} and then filter the results to Marketplace.
17+
18+
## Searching in {% data variables.product.prodname_marketplace %}
19+
20+
{% data reusables.marketplace.visit-marketplace %}
21+
1. Type any keywords and `type:models` and press **Enter**.
22+
23+
## Searching across {% data variables.product.prodname_dotcom %}
24+
25+
Anytime you search across all of {% data variables.product.prodname_dotcom %}, you can filter the results to see matching models from {% data variables.product.prodname_marketplace %}.
26+
27+
1. Navigate to https://github.com/search.
28+
1. Type any keywords and press **Enter**.
29+
1. To see all available filters for your search, in the "Filter by" sidebar, click **More**.
30+
1. To see results from {% data variables.product.prodname_github_models %}, click **Marketplace**.
31+
32+
## Searching within a specific field
33+
34+
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`.
35+
36+
|Qualifier|Example|
37+
|---|---|
38+
|<code>in:<em>FIELD</em></code> | [**in:tags agents**](https://github.com/search?q=in:tags+agents&type=marketplace) matches models with the 'agents' tag.
39+
|<code>in:<em>FIELD</em></code> | [**in:license distribute**](https://github.com/search?q=in:license+distribute&type=marketplace) matches models who mention 'distribute' in their license.
40+
|<code>in:<em>FIELD</em></code> | [**in:transparency "responsible ai"**](https://github.com/search?q=in:transparency+%22responsible+ai%22&type=marketplace) matches models who mention 'responsible ai' in their transparency information.
41+
42+
## Search by category
43+
44+
The `category` qualifier finds models that are tagged with a specific term.
45+
46+
|Qualifier|Example|
47+
|---|---|
48+
|<code>category:<em>CATEGORY</em></code> | [**category:multilingual**](https://github.com/search?q=category:multilingual&type=marketplace) matches models in the multilingual category.
49+
|<code>category:<em>CATEGORY</em></code> | [**category:"large context"**](https://github.com/search?q=category:%22large+context%22+&type=marketplace) matches models in the large context category.
50+
51+
## Search by input modality
52+
53+
The `input-modality` qualifier finds models that support a particular medium for providing input. Possible modalities include `text`, `image`, and `audio`.
54+
55+
|Qualifier|Example|
56+
|---|---|
57+
|<code>input-modality:<em>MODALITY</em></code> | [**input-modality:text**](https://github.com/search?q=input-modality:text&type=marketplace) matches models that support text input.
58+
59+
## Search by output modality
60+
61+
The `output-modality` qualifier finds models that support a particular medium for providing output. Possible modalities include `text` and `embeddings`.
62+
63+
|Qualifier|Example|
64+
|---|---|
65+
|<code>output-modality:<em>MODALITY</em></code> | [**output-modality:embeddings**](https://github.com/search?q=output-modality:embeddings&type=marketplace) matches models that support embedding output.
66+
67+
## Search by language
68+
69+
The `language` qualifier finds models that support a specified human language.
70+
71+
|Qualifier|Example|
72+
|---|---|
73+
|<code>language:<em>TWO_CHARACTER_CODE</em></code> | [**language:es**](https://github.com/search?q=language:es&type=marketplace) matches models that support Spanish.
74+
|<code>language:<em>NAME</em></code> | [**language:arabic**](https://github.com/search?q=language:arabic&type=marketplace) matches models that support Arabic.
75+
76+
## Search by task
77+
78+
The `task` qualifier finds models that can be used to accomplish a specific task.
79+
80+
|Qualifier|Example|
81+
|---|---|
82+
|<code>task:<em>TASK</em></code> | [**task:embeddings**](https://github.com/search?q=task:embeddings&type=marketplace) matches models that support embedding.
83+
|<code>task:<em>TASK</em></code> | [**task:chat-completion**](https://github.com/search?q=task:chat-completion&type=marketplace) matches models that support interaction via chat.
84+
85+
## Search by publisher
86+
87+
The `publisher` qualifier finds models released by a particular publisher.
88+
89+
|Qualifier|Example|
90+
|---|---|
91+
|<code>publisher:<em>PUBLISHER_NAME</em></code> | [**publisher:"Mistral AI"**](https://github.com/search?q=publisher:%22Mistral+AI%22&type=marketplace) matches models by Mistral AI.
92+
93+
## Search by input token limit
94+
95+
The `input-tokens` qualifier finds models with an input token limit above or below a particular value, or within a range.
96+
97+
|Qualifier|Example|
98+
|---|---|
99+
|<code>input-tokens:<em>VALUE</em></code> | [**input-tokens:>10000**](https://github.com/search?q=input-tokens:%3E10000&type=marketplace) matches models with an input token limit greater than 10,000.
100+
|<code>input-tokens:<em>VALUE</em></code> | [**input-tokens:15000..20000**](https://github.com/search?q=input-tokens:15000..20000&type=marketplace) matches models with an input token limit between 15,000 and 20,000.
101+
102+
## Search by output token limit
103+
104+
The `output-tokens` qualifier finds models with an output token limit above or below a particular value, or within a range.
105+
106+
|Qualifier|Example|
107+
|---|---|
108+
|<code>output-tokens:<em>VALUE</em></code> | [**output-tokens:<8000**](https://github.com/search?q=output-tokens:%3C8000&type=marketplace) matches models with an output token limit less than 8,000.
109+
|<code>output-tokens:<em>VALUE</em></code> | [**output-tokens:15000..20000**](https://github.com/search?q=output-tokens:15000..20000&type=marketplace) matches models with an output token limit between 15,000 and 20,000.
110+
111+
## Search by rate limit tier
112+
113+
The `rate-limit-tier` qualifier finds models with a particular tier of rate limit. Possible tiers include `low`, `high`, and `custom`.
114+
115+
|Qualifier|Example|
116+
|---|---|
117+
|<code>rate-limit-tier:<em>TIER</em></code> | [**rate-limit-tier:low**](https://github.com/search?q=rate-limit-tier:low&type=marketplace) matches models with a low rate limit tier.
118+
119+
## Search by license type
120+
121+
The `license` qualifier finds models that use a particular license.
122+
123+
|Qualifier|Example|
124+
|---|---|
125+
|<code>license:<em>LICENSE</em></code> | [**license:mit**](https://github.com/search?q=license:mit&type=marketplace) matches models that use the MIT license.
126+
|<code>license:<em>LICENSE</em></code> | [**license:custom**](https://github.com/search?q=license:custom&type=marketplace) matches models that use a custom license.
127+
128+
## Sorting results
129+
130+
The `sort` qualifier is used to sort results. It can be used alone or combined with other qualifiers and search text.
131+
132+
|Qualifier|Example|
133+
|---|---|
134+
|<code>sort:<em>FIELD</em></code> | [**sort:created-desc publisher:meta**](https://github.com/search?q=sort:created-desc+publisher:meta&type=marketplace) matches models published by Meta, sorted with the most recently added first.
135+
|<code>sort:<em>FIELD</em></code> | [**sort:name-asc in:task chat-completion**](https://github.com/search?q=sort:name-asc+in:task+chat-completion&type=marketplace) matches models that allow chat completion, sorted alphabetically.
136+
137+
## Further reading
138+
139+
* [AUTOTITLE](/search-github/getting-started-with-searching-on-github/sorting-search-results)

0 commit comments

Comments
 (0)