Skip to content

Commit 6df70f3

Browse files
committed
fix: alpha order
1 parent 6ce29ed commit 6df70f3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/huggingface_hub/inference/_providers/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"openai",
6262
"replicate",
6363
"sambanova",
64-
"together",
6564
"scaleway",
65+
"together",
6666
]
6767

6868
PROVIDER_OR_POLICY_T = Union[PROVIDER_T, Literal["auto"]]
@@ -156,15 +156,15 @@
156156
"conversational": SambanovaConversationalTask(),
157157
"feature-extraction": SambanovaFeatureExtractionTask(),
158158
},
159+
"scaleway": {
160+
"conversational": ScalewayConversationalTask(),
161+
"feature-extraction": ScalewayFeatureExtractionTask(),
162+
},
159163
"together": {
160164
"text-to-image": TogetherTextToImageTask(),
161165
"conversational": TogetherConversationalTask(),
162166
"text-generation": TogetherTextGenerationTask(),
163167
},
164-
"scaleway": {
165-
"conversational": ScalewayConversationalTask(),
166-
"feature-extraction": ScalewayFeatureExtractionTask(),
167-
},
168168
}
169169

170170

src/huggingface_hub/inference/_providers/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"nscale": {},
3434
"replicate": {},
3535
"sambanova": {},
36-
"together": {},
3736
"scaleway": {},
37+
"together": {},
3838
}
3939

4040

0 commit comments

Comments
 (0)