codellama-CodeLlama-7b-hf
/
Llama2-Code-Interpreter-main
/OpenCodeInterpreter
/data_collection
/Local-Code-Interpreter
/config_example
/config.example.json
{ | |
"API_TYPE": "open_ai", | |
"API_base": "https://api.openai.com/v1", | |
"API_VERSION": null, | |
"API_KEY": "<YOUR-API-KEY>", | |
"model": { | |
"GPT-3.5": { | |
"model_name": "gpt-3.5-turbo-0613", | |
"available": true | |
}, | |
"GPT-4": { | |
"model_name": "gpt-4-0613", | |
"available": true | |
}, | |
"GPT-4V": { | |
"model_name": "gpt-4-vision-preview", | |
"available": true | |
} | |
}, | |
"model_context_window": { | |
"gpt-3.5-turbo": 4096, | |
"gpt-3.5-turbo-16k": 16385, | |
"gpt-3.5-turbo-0613": 4096, | |
"gpt-3.5-turbo-1106": 16385, | |
"gpt-4": 8192, | |
"gpt-4-32k": 32768, | |
"gpt-4-0613": 8192, | |
"gpt-4-32k-0613": 32768, | |
"gpt-4-1106-preview": 128000, | |
"gpt-4-vision-preview": 128000 | |
} | |
} | |