- 这个项目提供了一个快速简便的方式来使用cocopilot to chatgpt4
重点强调自己部署,降低风控
- [copilot](https://github.com/settings/copilot) 是一个免费的AI应用,让你可以和 GPT 模型聊天。让它可以通过一个 HTTP API 来访问,这个 API 模仿了官方的 OpenAI API for ChatGPT,所以它可以和其他使用 OpenAI API for ChatGPT 的程序兼容。
- 你需要登录到github开通copilot的功能才能用
- 通过下面的地址便捷的获取
GHO-xxx,GHU-xxx
- 使用企业github拼车copilot使用
- 低于官方10$/月: 可以联系QQ号:496618601
- docker run快速开始:
docker run -d \
--name cocopilot-chatgpt \
-p 8080:8080 \
caoyunzhou/cocopilot-chatgpt
- IP访问
curl --location 'http://127.0.0.1:8080/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer gho_xxx' \
--data '{
"model": "gpt-4",
"messages": [{"role": "user", "content": "hi"}]
}'
- 域名访问
curl --location 'https://cocopilot.aivvm.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer gho_xxx' \
--data '{
"model": "gpt-4",
"messages": [{"role": "user", "content": "hi"}]
}'
- text-embedding-ada-002
curl --location 'https://cocopilot.aivvm.com/v1/embeddings' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer gho_xxx' \
--data '{
"input":["Your text string goes here"],
"model":"text-embedding-ada-002"
}'
- gpt-4
- gpt-3.5-turbo
- text-davinci-003
- text-davinci-002
- text-davinci-001
- text-curie-001
- text-babbage-001
- text-ada-001
- davinci
- curie
- babbage
- ada
- code-davinci-002
- code-davinci-001
- code-cushman-002
- code-cushman-001
- davinci-codex
- cushman-codex
- text-davinci-edit-001
- code-davinci-edit-001
- text-embedding-ada-002
- text-similarity-davinci-001
- text-similarity-curie-001
- text-similarity-babbage-001
- text-similarity-ada-001
- text-search-davinci-doc-001
- text-search-curie-doc-001
- text-search-babbage-doc-001
- text-search-ada-doc-001
- code-search-babbage-code-001
- code-search-ada-code-001
- gpt2