simple-one-api 一个统一调用各类大模型接口的开源项目,转换各种接口为标准的openai接口

可以理解成端口转发类似的,不过它还有其它很多功能
项目主页

https://github.com/fruitbars/simple-one-api

一个配置示例文件,里面的model_redirect相当于把模型可以重新取个名字,比如改成 14b

config.json

{
  "server_port": ":9090",
  "load_balancing": "random",
  "services": {
    "ollama": [
      {
        "models": ["qwen2.5-coder:14b", "deepseek-coder-v2:16b"],
        "enabled": true,
        "model_redirect": {
          "deepseek": "deepseek-coder-v2:16b",
          "14b": "qwen2.5-coder:14b"
        },
        "server_url":"http://127.0.0.1:11434/api/chat"
      }
    ]
  }
}

可以去github上查看比较完整的配置文件说明 config.json详解

https://github.com/fruitbars/simple-one-api/blob/main/docs/config.json%E8%AF%A6%E7%BB%86%E8%AF%B4%E6%98%8E.md

windows版本只需要这两个文件就行,config.josn要自己创建,执行程序 去这里下载

https://github.com/fruitbars/simple-one-api/releases
citelpyk.4hd.png

留下评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注

1 + 2 =