codex-convert-proxy 0.1.0

A high-performance proxy server that converts between different AI API formats
Documentation
{
  "listen": "0.0.0.0:8080",
  "log_dir": "./logs",
  "log_body": false,
  "backends": [
    {
      "name": "glm",
      "url": "https://open.bigmodel.cn/api/paas/v4",
      "api_key": "YOUR_API_KEY",
      "model": "glm-4",
      "protocol": "openai",
      "match_rules": {
        "default": true
      }
    },
    {
      "name": "kimi",
      "url": "https://api.moonshot.cn/v1",
      "api_key": "YOUR_API_KEY",
      "model": "moonshot-v1-8k",
      "protocol": "openai",
      "match_rules": {
        "path_prefix": "/kimi"
      }
    },
    {
      "name": "deepseek",
      "url": "https://api.deepseek.com/v1",
      "api_key": "YOUR_API_KEY",
      "model": "deepseek-chat",
      "protocol": "openai",
      "match_rules": {
        "path_prefix": "/deepseek"
      }
    },
    {
      "name": "minimax",
      "url": "https://api.minimax.chat/v1",
      "api_key": "YOUR_API_KEY",
      "model": "MiniMax-M2.7-highspeed",
      "protocol": "openai",
      "match_rules": {
        "path_prefix": "/minimax"
      }
    }
  ]
}