Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
e4f0dc8
1
Parent(s):
7563597
clarify billing
Browse files
src/app/interface/settings-dialog/index.tsx
CHANGED
@@ -96,8 +96,8 @@ export function SettingsDialog() {
|
|
96 |
</SelectTrigger>
|
97 |
<SelectContent>
|
98 |
<SelectItem value="SERVER">Use server settings (default, recommended)</SelectItem>
|
99 |
-
<SelectItem value="HUGGINGFACE">Custom Hugging Face model (
|
100 |
-
<SelectItem value="REPLICATE">Custom Replicate model (
|
101 |
<SelectItem value="OPENAI">DALL·E 3 by OpenAI (partial support, in alpha)</SelectItem>
|
102 |
</SelectContent>
|
103 |
</Select>
|
@@ -117,7 +117,7 @@ export function SettingsDialog() {
|
|
117 |
/>
|
118 |
</Field>
|
119 |
<Field>
|
120 |
-
<Label>Hugging Face Inference API model:</Label>
|
121 |
<Input
|
122 |
className="font-mono"
|
123 |
placeholder="Name of the Inference API model"
|
@@ -171,7 +171,7 @@ export function SettingsDialog() {
|
|
171 |
|
172 |
{renderingModelVendor === "REPLICATE" && <>
|
173 |
<Field>
|
174 |
-
<Label>Replicate API Token:</Label>
|
175 |
<Input
|
176 |
className="font-mono"
|
177 |
type="password"
|
|
|
96 |
</SelectTrigger>
|
97 |
<SelectContent>
|
98 |
<SelectItem value="SERVER">Use server settings (default, recommended)</SelectItem>
|
99 |
+
<SelectItem value="HUGGINGFACE">Custom Hugging Face model (requires a PRO account)</SelectItem>
|
100 |
+
<SelectItem value="REPLICATE">Custom Replicate model (will bill your own account)</SelectItem>
|
101 |
<SelectItem value="OPENAI">DALL·E 3 by OpenAI (partial support, in alpha)</SelectItem>
|
102 |
</SelectContent>
|
103 |
</Select>
|
|
|
117 |
/>
|
118 |
</Field>
|
119 |
<Field>
|
120 |
+
<Label>Hugging Face Inference API model (note: a PRO account is required):</Label>
|
121 |
<Input
|
122 |
className="font-mono"
|
123 |
placeholder="Name of the Inference API model"
|
|
|
171 |
|
172 |
{renderingModelVendor === "REPLICATE" && <>
|
173 |
<Field>
|
174 |
+
<Label>Replicate API Token (your own account will be billed per Replicate pricing):</Label>
|
175 |
<Input
|
176 |
className="font-mono"
|
177 |
type="password"
|