This commit is contained in:
Paul Gauthier 2024-06-11 13:31:52 -07:00
parent fb3cc98da5
commit 8e036fa891

View file

@ -26,15 +26,14 @@ The json file should be a dictionary with an entry for each model, as follows:
``` ```
{ {
"gpt-4": { "deepseek-chat": {
"max_tokens": 4096, "max_tokens": 4096,
"max_input_tokens": 8192, "max_input_tokens": 32000,
"max_output_tokens": 4096, "max_output_tokens": 4096,
"input_cost_per_token": 0.00003, "input_cost_per_token": 0.00000014,
"output_cost_per_token": 0.00006, "output_cost_per_token": 0.00000028,
"litellm_provider": "openai", "litellm_provider": "deepseek",
"mode": "chat", "mode": "chat"
"supports_function_calling": true
} }
} }
``` ```