diff --git a/Midjourney.md b/Midjourney.md index e7832e49..478115b7 100644 --- a/Midjourney.md +++ b/Midjourney.md @@ -2,6 +2,21 @@ **简介**:Midjourney Proxy API文档 +## 接口列表 +支持的接口如下: ++ [x] /mj/submit/imagine ++ [x] /mj/submit/change ++ [x] /mj/submit/blend ++ [x] /mj/submit/describe ++ [x] /mj/image/{id} (通过此接口获取图片,**请必须在系统设置中填写服务器地址!!**) ++ [x] /mj/task/{id}/fetch (此接口返回的图片地址为经过One API转发的地址) ++ [x] /task/list-by-condition ++ [x] /mj/submit/action (仅midjourney-proxy-plus支持,下同) ++ [x] /mj/submit/modal ++ [x] /mj/submit/shorten ++ [x] /mj/task/{id}/image-seed ++ [x] /mj/insight-face/swap (InsightFace) + ## 模型列表 ### midjourney-proxy支持 diff --git a/README.md b/README.md index 873126ca..118d2d49 100644 --- a/README.md +++ b/README.md @@ -16,19 +16,7 @@ 此分叉版本的主要变更如下: 1. 全新的UI界面(部分界面还待更新) -2. 添加[Midjourney-Proxy(Plus)](https://github.com/novicezk/midjourney-proxy)接口的支持,[对接文档](Midjourney.md),支持的接口如下: - + [x] /mj/submit/imagine - + [x] /mj/submit/change - + [x] /mj/submit/blend - + [x] /mj/submit/describe - + [x] /mj/image/{id} (通过此接口获取图片,**请必须在系统设置中填写服务器地址!!**) - + [x] /mj/task/{id}/fetch (此接口返回的图片地址为经过One API转发的地址) - + [x] /task/list-by-condition - + [x] /mj/submit/action (仅midjourney-proxy-plus支持,下同) - + [x] /mj/submit/modal - + [x] /mj/submit/shorten - + [x] /mj/task/{id}/image-seed - + [x] /mj/insight-face/swap (InsightFace) +2. 添加[Midjourney-Proxy(Plus)](https://github.com/novicezk/midjourney-proxy)接口的支持,[对接文档](Midjourney.md) 3. 支持在线充值功能,可在系统设置中设置,当前支持的支付接口: + [x] 易支付 4. 支持用key查询使用额度: @@ -45,22 +33,20 @@ 2. 对[@Botfather](https://t.me/botfather)输入指令/setdomain 3. 选择你的bot,然后输入http(s)://你的网站地址/login 4. Telegram Bot 名称是bot username 去掉@后的字符串 -13. 添加 [Suno API](https://github.com/Suno-API/Suno-API)接口的支持,[对接文档](Suno.md),支持的接口如下: - + [x] /suno/submit/music - + [x] /suno/submit/lyrics - + [x] /suno/fetch - + [x] /suno/fetch/:id +13. 添加 [Suno API](https://github.com/Suno-API/Suno-API)接口的支持,[对接文档](Suno.md) +14. 支持Rerank模型,目前仅兼容Cohere的rerank,可接入Dify,[对接文档](Rerank.md) ## 模型支持 此版本额外支持以下模型: 1. 第三方模型 **gps** (gpt-4-gizmo-*) 2. 智谱glm-4v,glm-4v识图 -3. Anthropic Claude 3 (claude-3-opus-20240229, claude-3-sonnet-20240229) +3. Anthropic Claude 3 4. [Ollama](https://github.com/ollama/ollama?tab=readme-ov-file),添加渠道时,密钥可以随便填写,默认的请求地址是[http://localhost:11434](http://localhost:11434),如果需要修改请在渠道中修改 5. [Midjourney-Proxy(Plus)](https://github.com/novicezk/midjourney-proxy)接口,[对接文档](Midjourney.md) 6. [零一万物](https://platform.lingyiwanwu.com/) 7. 自定义渠道,支持填入完整调用地址 8. [Suno API](https://github.com/Suno-API/Suno-API) 接口,[对接文档](Suno.md) +9. ReRank模型,目前仅支持[Cohere](https://cohere.ai/) 您可以在渠道中添加自定义模型gpt-4-gizmo-*,此模型并非OpenAI官方模型,而是第三方模型,使用官方key无法调用。 diff --git a/Rerank.md b/Rerank.md new file mode 100644 index 00000000..6a07287e --- /dev/null +++ b/Rerank.md @@ -0,0 +1,62 @@ +# Rerank API文档 + +**简介**:Rerank API文档 + +## 接入Dify +模型供应商选择Jina,按要求填写模型信息即可接入Dify。 + +## 请求方式 + +Post: /v1/rerank + +Request: + +```json +{ + "model": "rerank-multilingual-v3.0", + "query": "What is the capital of the United States?", + "top_n": 3, + "documents": [ + "Carson City is the capital city of the American state of Nevada.", + "The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.", + "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.", + "Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.", + "Capital punishment (the death penalty) has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states." + ] +} +``` + +Response: + +```json +{ + "results": [ + { + "document": { + "text": "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district." + }, + "index": 2, + "relevance_score": 0.9999702 + }, + { + "document": { + "text": "Carson City is the capital city of the American state of Nevada." + }, + "index": 0, + "relevance_score": 0.67800725 + }, + { + "document": { + "text": "Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages." + }, + "index": 3, + "relevance_score": 0.02800752 + } + ], + "usage": { + "prompt_tokens": 158, + "completion_tokens": 0, + "total_tokens": 158 + } +} +``` \ No newline at end of file diff --git a/Suno.md b/Suno.md index 05fc9f3e..840ca8e4 100644 --- a/Suno.md +++ b/Suno.md @@ -2,6 +2,13 @@ **简介**:Suno API文档 +## 接口列表 +支持的接口如下: ++ [x] /suno/submit/music ++ [x] /suno/submit/lyrics ++ [x] /suno/fetch ++ [x] /suno/fetch/:id + ## 模型列表 ### Suno API支持