jtsang4/claude-to-chatgpt
Fork: 149 Star: 1258 (更新于 2024-11-10 19:49:52)
license: MIT
Language: Python .
This project converts the API of Anthropic's Claude model to the OpenAI Chat API format.
最后发布版本: v0.4.0 ( 2023-07-12 04:55:18)
English | 简体中文 | 日本語
This project converts the API of Anthropic's Claude model to the OpenAI Chat API format.
- ✨ Call Claude API like OpenAI ChatGPT API
- 💦 Support streaming response
- 🐻 Support
claude-instant-1
,claude-2
models - 🌩️ Deploy by Cloudflare Workers or Docker
Getting Started
You can run this project using Cloudflare Workers or Docker:
Deployment
Using Cloudflare Workers
By using Cloudflare Workers, you don't need a server to deploy this project.
- Create a Cloudflare Worker
- Paste the code in
cloudflare-worker.js
to Cloudflare Worker "Quick Edit" Editor - Save and deploy
- (Optional) Set custom domain for your Cloudflare Worker
The Cloudfalre Workers support 100k requests a day, If you need to call more than that, you can use Docker to deploy as below.
Using Docker
docker run -p 8000:8000 wtzeng/claude-to-chatgpt:latest
Using Docker Compose
docker-compose up
The API will then be available at http://localhost:8000. API endpoint: /v1/chat/completions
Usage
When you input the model parameter as gpt-3.5-turbo
or gpt-3.5-turbo-0613
, it will be substituted with claude-instant-1
. otherwise, claude-2
will be utilized.
GUI
Here are some recommended GUI software that supports this project:
CLI
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $CLAUDE_API_KEY" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Conversion Details
The Claude Completion API has an endpoint /v1/complete
which takes the following JSON request:
{
"prompt": "\n\nHuman: Hello, AI.\n\nAssistant: ",
"model": "claude-instant-1",
"max_tokens_to_sample": 100,
"temperature": 1,
"stream": true
}
And returns JSON with choices and completions.
The OpenAI Chat API has a similar /v1/chat/completions
endpoint which takes:
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": "Hello, AI."
}
],
"max_tokens": 100,
"temperature": 1,
"stream": true
}
And returns JSON with a response string.
This project converts between these two APIs, get completions from the Claude model and formatting them as OpenAI Chat responses.
License
This project is licensed under the MIT License - see the LICENSE file for details.
最近版本更新:(数据更新于 2024-10-26 10:36:46)
2023-07-12 04:55:18 v0.4.0
2023-06-13 22:16:16 v0.3.3
2023-05-14 22:20:27 v0.3.2
2023-05-14 16:01:59 v0.3.1
2023-05-12 07:44:24 v0.3.0
2023-05-12 01:44:28 v0.2.2
2023-05-12 01:33:07 v0.2.1
2023-05-12 00:55:53 v0.2.0
2023-05-10 20:49:02 v0.1.0
主题(topics):
anthropic, chatgpt, claude, claude-ai, openai
jtsang4/claude-to-chatgpt同语言 Python最近更新仓库
2024-11-21 06:03:22 comfyanonymous/ComfyUI
2024-11-21 00:54:04 hect0x7/JMComic-Crawler-Python
2024-11-20 20:44:58 jxxghp/MoviePilot
2024-11-20 12:04:27 GNS3/gns3-gui
2024-11-20 03:53:48 xtekky/gpt4free
2024-11-19 19:47:08 ultralytics/ultralytics