You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The size of token context is not as precise as that of character context. It may happen that the token context size exceeds the character context size.
To prevent this, we may recheck the token context length of an actual search result with max character context size. If the token context is larger than max char context size, the context should be cut with lower number of tokens. For instance:
with maxContextTokenLength = 3 and maxContextCharLength=10
"This is a nice [example] for a snippet"
should be reduced to
"a nice [example] for a"
The text was updated successfully, but these errors were encountered:
The size of token context is not as precise as that of character context. It may happen that the token context size exceeds the character context size.
To prevent this, we may recheck the token context length of an actual search result with max character context size. If the token context is larger than max char context size, the context should be cut with lower number of tokens. For instance:
with
maxContextTokenLength = 3
andmaxContextCharLength=10
should be reduced to
The text was updated successfully, but these errors were encountered: