Unverified Commit 435f804c authored by takatost's avatar takatost Committed by GitHub

fix: gpt-3.5-turbo-instruct context size to 8192 (#1196)

parent ae3f1ac0
......@@ -32,7 +32,7 @@ MODEL_MAX_TOKENS = {
'gpt-4': 8192,
'gpt-4-32k': 32768,
'gpt-3.5-turbo': 4096,
'gpt-3.5-turbo-instruct': 4096,
'gpt-3.5-turbo-instruct': 8192,
'gpt-3.5-turbo-16k': 16384,
'text-davinci-003': 4097,
}
......
......@@ -132,7 +132,7 @@ class OpenAIProvider(BaseModelProvider):
'gpt-4': 8192,
'gpt-4-32k': 32768,
'gpt-3.5-turbo': 4096,
'gpt-3.5-turbo-instruct': 4096,
'gpt-3.5-turbo-instruct': 8192,
'gpt-3.5-turbo-16k': 16384,
'text-davinci-003': 4097,
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment