generated from Soulter/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_conf_schema.json
More file actions
37 lines (37 loc) · 1.22 KB
/
_conf_schema.json
File metadata and controls
37 lines (37 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"huggingface_api_url": {
"description": "Huggingface 服务 API 地址",
"type": "string",
"hint": "请输入您部署的 Huggingface 服务 API 地址",
"obvious_hint": true
},
"api_key": {
"description": "API 密钥",
"type": "string",
"hint": "请前往 https://cloud.siliconflow.cn/i/I2f0E3Az 注册账号,并获取 API_Key",
"default": "API_Key",
"obvious_hint": true
},
"model": {
"description": "使用的模型名称",
"type": "string",
"default": "stabilityai/stable-diffusion-3-5-large",
"hint": "AI模型的名称"
},
"size": {
"description": "生成图片的分辨率",
"type": "string",
"default": "1024x1024",
"hint": "图片分辨率,格式为:宽x高,例如:1024x1024"
},
"nap_server_address": {
"description": "NAP cat 服务地址,若与服务器在同一服务器上请填写localhost",
"type": "string",
"default": "localhost"
},
"nap_server_port": {
"description": "NAP cat 所处服务器接收文件端口,在同一服务器上可以不填",
"type": "int",
"default": 3658
}
}