mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加mt-photos-ai到列表
This commit is contained in:
parent
66f7b7de65
commit
793c2673c0
3
apps/mt-photos-ai/1.2.0/.env.sample
Normal file
3
apps/mt-photos-ai/1.2.0/.env.sample
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
API_AUTH_KEY="mt_photos_ai_extra_secret"
|
||||||
|
CONTAINER_NAME="mt-photos-ai"
|
||||||
|
PANEL_APP_PORT_HTTP=40335
|
19
apps/mt-photos-ai/1.2.0/data.yml
Normal file
19
apps/mt-photos-ai/1.2.0/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40335"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "mt_photos_ai_extra_secret"
|
||||||
|
edit: true
|
||||||
|
envKey: API_AUTH_KEY
|
||||||
|
labelEn: API Auth Key
|
||||||
|
labelZh: API 授权密钥
|
||||||
|
random: true
|
||||||
|
required: true
|
||||||
|
rule: paramComplexity
|
||||||
|
type: password
|
23
apps/mt-photos-ai/1.2.0/docker-compose.yml
Normal file
23
apps/mt-photos-ai/1.2.0/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
services:
|
||||||
|
mt-photos-ai:
|
||||||
|
image: "mtphotos/mt-photos-ai:1.2.0"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8060"
|
||||||
|
environment:
|
||||||
|
- API_AUTH_KEY=${API_AUTH_KEY}
|
||||||
|
runtime: nvidia
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities: [gpu]
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
4
apps/mt-photos-ai/README.md
Normal file
4
apps/mt-photos-ai/README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# MT Photos AI 识别相关任务独立部署项目
|
||||||
|
|
||||||
|
- 基于PaddleOCR实现的文本识别(OCR)接口
|
||||||
|
- 基于Chinese-CLIP(OpenAI CLIP模型的中文版本)实现的图片、文本提取特征接口
|
21
apps/mt-photos-ai/data.yml
Normal file
21
apps/mt-photos-ai/data.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: MT Photos AI
|
||||||
|
tags:
|
||||||
|
- 多媒体
|
||||||
|
- AI / 大模型
|
||||||
|
title: MT Photos AI 相关的独立服务
|
||||||
|
description: MT Photos AI 相关的独立服务
|
||||||
|
additionalProperties:
|
||||||
|
key: mt-photos-ai
|
||||||
|
name: MT Photos AI
|
||||||
|
tags:
|
||||||
|
- Media
|
||||||
|
- AI
|
||||||
|
shortDescZh: MT Photos AI 相关的独立服务
|
||||||
|
shortDescEn: MT Photos AI-related standalone services
|
||||||
|
type: tool
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
recommend: 0
|
||||||
|
website: https://mtmt.tech
|
||||||
|
github: https://github.com/MT-Photos/mt-photos-ai
|
||||||
|
document: https://mtmt.tech
|
3
apps/mt-photos-ai/latest-onnx/.env.sample
Normal file
3
apps/mt-photos-ai/latest-onnx/.env.sample
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
API_AUTH_KEY="mt_photos_ai_extra_secret"
|
||||||
|
CONTAINER_NAME="mt-photos-ai"
|
||||||
|
PANEL_APP_PORT_HTTP=40335
|
19
apps/mt-photos-ai/latest-onnx/data.yml
Normal file
19
apps/mt-photos-ai/latest-onnx/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40335"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "mt_photos_ai_extra_secret"
|
||||||
|
edit: true
|
||||||
|
envKey: API_AUTH_KEY
|
||||||
|
labelEn: API Auth Key
|
||||||
|
labelZh: API 授权密钥
|
||||||
|
random: true
|
||||||
|
required: true
|
||||||
|
rule: paramComplexity
|
||||||
|
type: password
|
22
apps/mt-photos-ai/latest-onnx/docker-compose.yml
Normal file
22
apps/mt-photos-ai/latest-onnx/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
services:
|
||||||
|
mt-photos-ai:
|
||||||
|
image: "mtphotos/mt-photos-ai:onnx-latest"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8060"
|
||||||
|
environment:
|
||||||
|
- API_AUTH_KEY=${API_AUTH_KEY}
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities: [gpu]
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
3
apps/mt-photos-ai/latest/.env.sample
Normal file
3
apps/mt-photos-ai/latest/.env.sample
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
API_AUTH_KEY="mt_photos_ai_extra_secret"
|
||||||
|
CONTAINER_NAME="mt-photos-ai"
|
||||||
|
PANEL_APP_PORT_HTTP=40335
|
19
apps/mt-photos-ai/latest/data.yml
Normal file
19
apps/mt-photos-ai/latest/data.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "40335"
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: "mt_photos_ai_extra_secret"
|
||||||
|
edit: true
|
||||||
|
envKey: API_AUTH_KEY
|
||||||
|
labelEn: API Auth Key
|
||||||
|
labelZh: API 授权密钥
|
||||||
|
random: true
|
||||||
|
required: true
|
||||||
|
rule: paramComplexity
|
||||||
|
type: password
|
23
apps/mt-photos-ai/latest/docker-compose.yml
Normal file
23
apps/mt-photos-ai/latest/docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
services:
|
||||||
|
mt-photos-ai:
|
||||||
|
image: "mtphotos/mt-photos-ai:latest"
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8060"
|
||||||
|
environment:
|
||||||
|
- API_AUTH_KEY=${API_AUTH_KEY}
|
||||||
|
runtime: nvidia
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- capabilities: [gpu]
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
BIN
apps/mt-photos-ai/logo.png
Normal file
BIN
apps/mt-photos-ai/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.1 KiB |
Loading…
Reference in New Issue
Block a user