mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
Added basic support for gpt-3.5-turbo-16k
This commit is contained in:
parent
131245fa64
commit
1ce38d230b
1 changed files with 8 additions and 0 deletions
|
@ -22,6 +22,14 @@ class Model_GPT35:
|
|||
GPT35 = Model_GPT35()
|
||||
|
||||
|
||||
class Model_GPT35_16k:
|
||||
name = "gpt-3.5-turbo-16k"
|
||||
max_context_tokens = 16 * 1024
|
||||
|
||||
|
||||
GPT35 = Model_GPT35_16k()
|
||||
|
||||
|
||||
def get_model(name):
|
||||
models = [
|
||||
GPT4_32k,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue