Merge pull request #832 from jxmai/patch-1

Restore context windows size to 8096 tokens in contants config
This commit is contained in:
PromptEngineer 2024-11-04 07:57:27 -08:00 committed by GitHub
commit b48c62e7b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ CHROMA_SETTINGS = Settings(
)
# Context Window and Max New Tokens
CONTEXT_WINDOW_SIZE = 2048
CONTEXT_WINDOW_SIZE = 8096
MAX_NEW_TOKENS = CONTEXT_WINDOW_SIZE # int(CONTEXT_WINDOW_SIZE/4)
#### If you get a "not enough space in the buffer" error, you should reduce the values below, start with half of the original values and keep halving the value until the error stops appearing