mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-02 11:50:37 +08:00
17 lines
512 B
Python
17 lines
512 B
Python
MAX_TOKENS = {
|
|
'text-embedding-ada-002': 8000,
|
|
'gpt-3.5-turbo': 4000,
|
|
'gpt-3.5-turbo-0613': 4000,
|
|
'gpt-3.5-turbo-0301': 4000,
|
|
'gpt-3.5-turbo-16k': 16000,
|
|
'gpt-3.5-turbo-16k-0613': 16000,
|
|
'gpt-4': 8000,
|
|
'gpt-4-0613': 8000,
|
|
'gpt-4-32k': 32000,
|
|
'claude-instant-1': 100000,
|
|
'claude-2': 100000,
|
|
'command-nightly': 4096,
|
|
'replicate/llama-2-70b-chat:2c1608e18606fad2812020dc541930f2d0495ce32eee50074220b87300bc16e1': 4096,
|
|
'meta-llama/Llama-2-7b-chat-hf': 4096
|
|
}
|