Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
* Added support for scanning compressed files
* Added web interface for testing and demonstrations
* Added automated build scripts
  • Loading branch information
tmplink committed Nov 17, 2024
1 parent 1ea1a53 commit 554a396
Show file tree
Hide file tree
Showing 11 changed files with 1,164 additions and 214 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This detector supports checking the following file types:
* ✅ Images (supported)
* ✅ PDF files (supported)
* ✅ Videos (supported)
* Files in compressed packages (planned)
* Files in compressed packages (supported)

## Quick Start

Expand All @@ -46,16 +46,17 @@ Supported architectures: `x86_64`, `ARM64`.
### Use the API for Content Checking

```bash
# Detect images
# Detection
curl -X POST -F "file=@/path/to/image.jpg" http://localhost:3333/check
# Detect PDF files
curl -X POST -F "file=@/path/to/file.pdf" http://localhost:3333/pdf
# Detect video files
curl -X POST -F "file=@/path/to/file.mp4" http://localhost:3333/video
```

### Use the Built-in Web Interface for Detection

Visit: [http://localhost:3333](http://localhost:3333)

## Public API


You can use the public API service provided by vx.link.

```bash
Expand Down
13 changes: 6 additions & 7 deletions README_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* ✅ 图片(已支持)
* ✅ PDF 文件(已支持)
* ✅ 视频(已支持)
* 压缩包中的文件(计划
* 压缩包中的文件(已支持

## 快速开始

Expand All @@ -44,13 +44,12 @@ docker run -d -p 3333:3333 --name nsfw-detector vxlink/nsfw_detector:latest
### 使用 API 进行内容检查

```bash
# 检测图片
# 检测
curl -X POST -F "file=@/path/to/image.jpg" http://localhost:3333/check
# 检测 PDF 文件
curl -X POST -F "file=@/path/to/file.pdf" http://localhost:3333/pdf
# 检测视频文件
curl -X POST -F "file=@/path/to/file.mp4" http://localhost:3333/video
```

### 使用内置的 Web 界面进行检测

访问地址:[http://localhost:3333](http://localhost:3333)

## 公共 API

Expand Down
14 changes: 7 additions & 7 deletions README_jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* ✅ 画像(対応済み)
* ✅ PDF(対応済み)
* ✅ 動画(対応済み)
* 圧縮ファイル内のファイル(対応予定
* 圧縮ファイル内のファイル(対応済み

## クイックスタート

Expand All @@ -43,20 +43,20 @@ docker run -d -p 3333:3333 --name nsfw-detector vxlink/nsfw_detector:latest
### API を使用したコンテンツ確認

```bash
# 画像の検出
# 検出
curl -X POST -F "file=@/path/to/image.jpg" http://localhost:3333/check
# PDFの検出
curl -X POST -F "file=@/path/to/file.pdf" http://localhost:3333/pdf
# 检测视频文件
curl -X POST -F "file=@/path/to/file.mp4" http://localhost:3333/video
```

### Web インターフェースを使用した検出

アクセス先:[http://localhost:3333](http://localhost:3333)

## パブリック API

vx.link が提供する公開 API サービスをご利用いただけます。

```bash
# ファイルの検出、自動的にファイルタイプを識別します
# 検出
curl -X POST -F "file=@/path/to/image.jpg" https://vx.link/public/nsfw
```

Expand Down
Loading

0 comments on commit 554a396

Please sign in to comment.