Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinlic committed Dec 6, 2024
1 parent 17f9af8 commit 6504381
Show file tree
Hide file tree
Showing 6 changed files with 711 additions and 634 deletions.
278 changes: 278 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,279 @@
# Jimeng AI Free 服务

[![](https://img.shields.io/github/license/llm-red-team/jimeng-free-api.svg)](LICENSE)
![](https://img.shields.io/github/stars/llm-red-team/jimeng-free-api.svg)
![](https://img.shields.io/github/forks/llm-red-team/jimeng-free-api.svg)
![](https://img.shields.io/docker/pulls/vinlic/jimeng-free-api.svg)

支持即梦超强图像生成能力(目前官方每日有 60 积分,可生成 60 次),零配置部署,多路 token 支持,自动清理会话痕迹。

与 ChatGPT 接口完全兼容。

## 目录

- [免责声明](#免责声明)
- [接入准备](#接入准备)
- [Docker 部署](#Docker部署)
- [Docker-compose 部署](#Docker-compose部署)
- [Render 部署](#Render部署)
- [Vercel 部署](#Vercel部署)
- [原生部署](#原生部署)
- [推荐使用客户端](#推荐使用客户端)
- [接口列表](#接口列表)
- [对话补全](#对话补全)
- [图像生成](#图像生成)

## 免责声明

**逆向 API 是不稳定的,建议前往即梦 AI 官方 https://jimeng.jianying.com/ 体验功能,避免封禁的风险。**

**本组织和个人不接受任何资金捐助和交易,此项目是纯粹研究交流学习性质!**

**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!**

**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!**

**仅限自用,禁止对外提供服务或商用,避免对官方造成服务压力,否则风险自担!**

## 接入准备

[即梦](https://jimeng.jianying.com/) 获取 sessionid

进入即梦登录账号,然后 F12 打开开发者工具,从 Application > Cookies 中找到`sessionid`的值,这将作为 Authorization 的 Bearer Token 值:`Authorization: Bearer sessionid`

## Docker 部署

请准备一台具有公网 IP 的服务器并将 8000 端口开放。

拉取镜像并启动服务

```shell
docker run -it -d --init --name jimeng-free-api -p 8000:8000 -e TZ=Asia/Shanghai vinlic/jimeng-free-api:latest
```

查看服务实时日志

```shell
docker logs -f jimeng-free-api
```

重启服务

```shell
docker restart jimeng-free-api
```

停止服务

```shell
docker stop jimeng-free-api
```

### Docker-compose 部署

```yaml
version: "3"

services:
jimeng-free-api:
container_name: jimeng-free-api
image: vinlic/jimeng-free-api:latest
restart: always
ports:
- "8000:8000"
environment:
- TZ=Asia/Shanghai
```
### Render 部署
**注意:部分部署区域可能无法连接即梦,如容器日志出现请求超时或无法连接,请切换其他区域部署!**
**注意:免费账户的容器实例将在一段时间不活动时自动停止运行,这会导致下次请求时遇到 50 秒或更长的延迟,建议查看[Render 容器保活](https://github.com/LLM-Red-Team/free-api-hub/#Render%E5%AE%B9%E5%99%A8%E4%BF%9D%E6%B4%BB)**
1. fork 本项目到你的 github 账号下。
2. 访问 [Render](https://dashboard.render.com/) 并登录你的 github 账号。
3. 构建你的 Web Service(New+ -> Build and deploy from a Git repository -> Connect 你 fork 的项目 -> 选择部署区域 -> 选择实例类型为 Free -> Create Web Service)。
4. 等待构建完成后,复制分配的域名并拼接 URL 访问即可。
### Vercel 部署
**注意:Vercel 免费账户的请求响应超时时间为 10 秒,但接口响应通常较久,可能会遇到 Vercel 返回的 504 超时错误!**
请先确保安装了 Node.js 环境。
```shell
npm i -g vercel --registry http://registry.npmmirror.com
vercel login
git clone https://github.com/LLM-Red-Team/jimeng-free-api
cd jimeng-free-api
vercel --prod
```

## 原生部署

请准备一台具有公网 IP 的服务器并将 8000 端口开放。

请先安装好 Node.js 环境并且配置好环境变量,确认 node 命令可用。

安装依赖

```shell
npm i
```

安装 PM2 进行进程守护

```shell
npm i -g pm2
```

编译构建,看到 dist 目录就是构建完成

```shell
npm run build
```

启动服务

```shell
pm2 start dist/index.js --name "jimeng-free-api"
```

查看服务实时日志

```shell
pm2 logs jimeng-free-api
```

重启服务

```shell
pm2 reload jimeng-free-api
```

停止服务

```shell
pm2 stop jimeng-free-api
```

## 推荐使用客户端

使用以下二次开发客户端接入 free-api 系列项目更快更简单,支持文档/图像上传!

[Clivia](https://github.com/Yanyutin753/lobe-chat) 二次开发的 LobeChat [https://github.com/Yanyutin753/lobe-chat](https://github.com/Yanyutin753/lobe-chat)

[时光@](https://github.com/SuYxh) 二次开发的 ChatGPT Web [https://github.com/SuYxh/chatgpt-web-sea](https://github.com/SuYxh/chatgpt-web-sea)

## 接口列表

目前支持与 openai 兼容的 `/v1/chat/completions` 接口,可自行使用与 openai 或其他兼容的客户端接入接口,或者使用 [dify](https://dify.ai/) 等线上服务接入使用。

### 对话补全

对话补全接口,与 openai 的 [chat-completions-api](https://platform.openai.com/docs/guides/text-generation/chat-completions-api) 兼容。

**POST /v1/chat/completions**

header 需要设置 Authorization 头部:

```
Authorization: Bearer [sessionid]
```

请求数据:

```json
{
// jimeng-2.1(默认) / jimeng-2.0-pro / jimeng-2.0 / jimeng-1.4 / jimeng-xl-pro
"model": "jimeng-2.1",
"messages": [
{
"role": "user",
"content": "少女祈祷中..."
}
],
// 如果使用SSE流请设置为true,默认false
"stream": false
}
```

响应数据:

```json
{
"id": "b88fe520-b40c-11ef-8c0b-cf7f4ccae1fb",
"model": "jimeng-2.1",
"object": "chat.completion",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "![image_0](https://p9-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/29bc1377c1354232a2747ddf443000b5~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=fDT67RrcwTWTeFA69HX7oHKdKTI%3D&format=.webp)\n![image_1](https://p3-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/5e51a41521824afbb280a3a188f65f13~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=oXxyNCPCUXf2SmEQqAH%2B1ecnMI8%3D&format=.webp)\n![image_2](https://p9-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/4580ce92e2574ab6b487134500ca92db~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=9GRYzJJeH0LUMprIFKni7PVuNoo%3D&format=.webp)\n![image_3](https://p6-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/0ce51429b38d49f289f5eecab516b243~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=hkqcRM%2B6PawaHxVIi0FuA0j3wSY%3D&format=.webp)\n"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 1,
"completion_tokens": 1,
"total_tokens": 2
},
"created": 1733515220
}
```

### 图像生成

图像生成接口,与 openai 的 [images-create-api](https://platform.openai.com/docs/api-reference/images/create) 兼容。

**POST /v1/images/generations**

header 需要设置 Authorization 头部:

```
Authorization: Bearer [sessionid]
```

请求数据:

```json
{
// 提示词,必填
"prompt": "少女祈祷中...",
// 反向提示词,默认空字符串
"negativePrompt": "",
// 图像宽度,默认1024
"width": 1024,
// 图像高度,默认1024
"height": 1024,
// 精细度,取值范围0-1,默认0.5
"sample_strength": 0.5
}
```

响应数据:

```json
{
"created": 1733515457,
"data": [
{
"url": "https://p6-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/82e1c62b410c4d56b16ae81e4b758630~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=BGdScKQ8NLzMmsq%2FNJsAoeT7YKw%3D&format=.webp"
},
{
"url": "https://p3-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/6d1fe992c76d4f5dac28b1fc6f26eca0~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=acKpfgKU353NOpcQZ%2F%2Bt6ZOAU24%3D&format=.webp"
},
{
"url": "https://p3-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/ba251a7358f44945a28b33b89d4cd85d~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=Efa7AQoj4zd31RGZs2nmq%2FUgCp4%3D&format=.webp"
},
{
"url": "https://p6-heycan-hgt-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/1de2c37bc8734c32b1eb8c903b9c81f2~tplv-3jr8j4ixpe-aigc_resize:2048:2048.webp?lk3s=43402efa&x-expires=1735344000&x-signature=Tif2ZX0wYOhdrwjB0SXrSlu0EJc%3D&format=.webp"
}
]
}
```
Loading

0 comments on commit 6504381

Please sign in to comment.