mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
move to gpt-3.5-turbo-1106
This commit is contained in:
parent
6ebc142377
commit
fb07b784f6
8 changed files with 27 additions and 23 deletions
|
@ -12,6 +12,9 @@ class TestModels(unittest.TestCase):
|
|||
model = Model.create("gpt-3.5-turbo-16k")
|
||||
self.assertEqual(model.max_context_tokens, 16 * 1024)
|
||||
|
||||
model = Model.create("gpt-3.5-turbo-1106")
|
||||
self.assertEqual(model.max_context_tokens, 16 * 1024)
|
||||
|
||||
model = Model.create("gpt-4")
|
||||
self.assertEqual(model.max_context_tokens, 8 * 1024)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue