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
{{ message }}
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
The cache is working correctly for Python and languages which uses # as a character to start a comment. Languages that use // are not being registered in cache correctly. This is because the regex that we are using.
FIM Python request:
# Some context# my_path/my_file.py <-- Regex will match heredeffoo():
pass
FIM JS request
// Some context// my_path/my_file.js <-- Regex will not match here
...