모델 패키지 생성
명시적인 접근 정책과 범위가 지정된 API 자격 증명을 사용하여 ShareAI Creator 모델 메타데이터, 컬렉션 및 모델 태그를 함께 생성하세요.
이 페이지에서
POST
https://api.shareai.now/api/v1/console/creator/model-package모델 메타데이터, 컬렉션 정책 및 태그를 생성하세요.
- 기본 URL
https://api.shareai.now- 인증
- HTTP Basic: 크리에이터 UUID 및 크리에이터 액세스 토큰
- 필수 범위
creator_collections:writecreator_models:write


모델 패키지를 사용하여 일관된 모델 정의를 제출하세요. 모델이 수행하는 작업, 제한 사항 및 각 정확한 태그를 설명하세요. 이 요청은 카탈로그 데이터를 생성하며, 모델 가중치를 업로드하거나 장치를 자동으로 공유 모드로 설정하지 않습니다.
JSON
{
"model": {
"name": "Example Research Model",
"slug": "example-research-model",
"description_html": "<p>A text model for document classification. Include evaluation notes and limitations.</p>"
},
"collection": {
"share_types": [
"private"
]
},
"tags": [
{
"tag": "3b",
"description_html": "<p>Compact model variant.</p>"
},
{
"tag": "7b",
"description_html": "<p>Larger model variant.</p>"
}
],
"media": []
}
cURL
curl --fail-with-body --request POST https://api.shareai.now/api/v1/console/creator/model-package \
-u "$CREATOR_UUID:$CREATOR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
--data @model-package.json
먼저 슬러그를 확인하세요#
GET
https://api.shareai.now/api/v1/console/creator/model-slug-availability의도된 model_slug를 확인하세요.
- 기본 URL
https://api.shareai.now- 인증
- HTTP Basic: 크리에이터 UUID 및 크리에이터 액세스 토큰
- 필수 범위
creator_collections:read
cURL
curl --get --fail-with-body https://api.shareai.now/api/v1/console/creator/model-slug-availability \
-u "$CREATOR_UUID:$CREATOR_ACCESS_TOKEN" \
--data-urlencode "model_slug=example-research-model"
성공적인 가용성 확인은 사전 비행 힌트일 뿐 예약이 아닙니다. 생성 시 충돌을 처리하고 서버에서 반환된 모델/컬렉션 식별자를 유지하세요.
정책 및 태그 재정의#
컬렉션은 기본 공유 유형을 제공합니다. 태그는 지원되는 값을 제공하고 관련된 공급자 대상 또는 상업적 필드를 제공할 수 있습니다. 생성 후 각 태그의 유효 정책을 확인하세요. share_types_override 콘솔에서 컬렉션을 열고 설명과 정확한 태그를 확인하며 누락된 미디어 또는 상업 정보를 완료하고 검토 워크플로를 사용하세요. 모델이 제공될 수 있음을 공급자에게 알리기 전에 승인된 상태를 확인하세요.
저장 후#
링크: 먼저 슬러그를 확인하세요.
마지막 업데이트 9월 15, 2026