vet

Mirror of Vet, an AI code review tool
git clone git://git.laack.co/vet.git
Log | Files | Refs | README | LICENSE

models.json (920B)


      1 {
      2   "providers": {
      3     "openai": {
      4       "name": "OpenAI",
      5       "api_type": "openai_compatible",
      6       "base_url": "https://api.openai.com/v1",
      7       "api_key_env": "OPENAI_API_KEY",
      8       "models": {
      9         "gpt-5.4": {
     10           "context_window": 1050000,
     11           "max_output_tokens": 128000,
     12           "supports_temperature": false
     13         },
     14         "gpt-5.4-pro": {
     15           "context_window": 1050000,
     16           "max_output_tokens": 128000,
     17           "supports_temperature": false
     18         }
     19       }
     20     },
     21     "groq": {
     22       "name": "Groq",
     23       "api_type": "openai_compatible",
     24       "base_url": "https://api.groq.com/openai/v1",
     25       "api_key_env": "GROQ_API_KEY",
     26       "models": {
     27         "kimi-k2": {
     28           "model_id": "moonshotai/kimi-k2-instruct-0905",
     29           "context_window": 262144,
     30           "max_output_tokens": 16384,
     31           "supports_temperature": true
     32         }
     33       }
     34     }
     35   }
     36 }