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
Describe the Issue
In the same session, if I put something like "Alice and Bob are friends" in TextDB, then ask the question "Who's Alice's friend", I can see the info snipplet in debug log and the model gives the right answer. But if I put a sentense of the same meaning in Chinese, there's no snipplet in the log and the model doesn't know what I'm talking about.
Additional Information:
I'm using version 1.83.1.
The text was updated successfully, but these errors were encountered:
This is a known limitation of the current implementation of the TextDB in kobold lite. The current way it handles grammar / tenses is based on the English language which means it is less effective for other languages.
The two areas needed for multi language support are:
A stop list of common words in Chinese (i.e. words which should be ignored as they usually do not have significance like "is, the" etc.
A stemmer (preferably written in Javascript) which works on Chinese (makes words more general - i.e. changes winning -> win)
Describe the Issue
In the same session, if I put something like "Alice and Bob are friends" in TextDB, then ask the question "Who's Alice's friend", I can see the info snipplet in debug log and the model gives the right answer. But if I put a sentense of the same meaning in Chinese, there's no snipplet in the log and the model doesn't know what I'm talking about.
Additional Information:
I'm using version 1.83.1.
The text was updated successfully, but these errors were encountered: