1 Star 0 Fork 42

飞飞飞飞飞飞/Copilot后端代理服务

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
version: '3.3'
services:
copilot-app:
container_name: copilot-app
image: registry.cn-hangzhou.aliyuncs.com/ripper/copilot-proxies:latest
restart: always
ports:
- "1188:1188"
- "443:443"
environment:
- PORT=1188
- HTTPS_PORT=443
- LOGIN_PASSWORD=
# 代码补全配置
- CODEX_API_BASE=https://api.deepseek.com/beta/v1/completions # 代码补全API地址
- CODEX_API_KEY=yourapikey # 代码补全API密钥
- CODEX_API_MODEL_NAME=deepseek-chat # 代码补全API模型名称
- CODEX_MAX_TOKENS=500 # 代码补全API最大返回token数
- CODEX_TEMPERATURE=1 # 代码补全API温度, 默认值为:1, deepseek模型官方推荐设置为1, 如果要跟随插件动态设置,请设置为-1
- CODEX_SERVICE_TYPE=default # 补全服务类型, 默认值为:default, 可选值: ollama
# 聊天对话配置
- CHAT_API_BASE=https://api.deepseek.com/v1/chat/completions # 聊天补全API地址
- CHAT_API_KEY=yourapikey # 聊天补全API密钥
- CHAT_API_MODEL_NAME=deepseek-chat # 聊天补全API模型名称
- CHAT_MAX_TOKENS=4096 # 聊天API最大返回token数
# 下面是Copilot配置
- DEFAULT_BASE_URL=https://mycopilot.com
- COPILOT_DEBOUNCE=200 # 补全防抖时间(毫秒)
- API_BASE_URL=https://api.mycopilot.com
- PROXY_BASE_URL=https://copilot-proxy.mycopilot.com
- TELEMETRY_BASE_URL=https://copilot-telemetry-service.mycopilot.com
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/feifeife/github-copilot-proxies.git
[email protected]:feifeife/github-copilot-proxies.git
feifeife
github-copilot-proxies
Copilot后端代理服务
master

搜索帮助