http://127.0.0.1:5555/sync
http://127.0.0.1:5555/set
headers
"Content-Type: application/json"
body
{
"user_id": 1, // 用户ID
"is_create": true // true:允许创建工作区,false:不允许创建工作区
}
http://127.0.0.1:5555/create
headers
"Content-Type: application/json"
body
{
"user_id": 1 // 用户ID
}
http://127.0.0.1:5555/delete-ws
headers
"Content-Type: application/json"
body
{
"user_id": 1 // 用户ID
}
http://127.0.0.1:5555/check
http://127.0.0.1:5555/new
headers
"Content-Type: application/json"
body
{
"slug": "workspace-for-user-1",
"model": "ChatGPT",
"avatar": "sk123"
}
http://127.0.0.1:5555/get-user
headers
"Content-Type: application/json"
body
{
"user_id": 1
}
http://127.0.0.1:5555/update-last
headers
"Content-Type: application/json"
body
{
"workspaceSlug": "workspace-for-user-1", // 工作区 Slug
"threadSlug": "d4c12455-92cc-442b-b701-58c4972dfcd0" // 对话 Slug
}
http://127.0.0.1:5555/get-list
headers
"Content-Type: application/json"
body
{
"user_id": 1
}
http://127.0.0.1:5555/get-sessionid
headers
"Content-Type: application/json"
body
{
"user_id": 1
}
http://127.0.0.1:5555/delete-session
headers
"Content-Type: application/json"
body
{
"workspaceSlug": "workspace-for-user-1", // 工作区 Slug
"threadSlug": "d4c12455-92cc-442b-b701-58c4972dfcd0" // 对话 Slug
}
http://127.0.0.1:5555/is-admin
headers
"Content-Type: application/json"
body
{
"user_id": 1
}