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
Ollama Executable requires runners folder to execute which makes it little heavy specially for Windows executable, so its better to setup LFS for handling these large files.
Recommended approach is to store in LFS for all files that are larger than 50mb. Something like this may work:
find . -type f -size +50M | sed 's/^/git lfs track "/;s/$/"/' | sh
git add .gitattributes
git commit -m "Auto-track large files over 50MB"
The text was updated successfully, but these errors were encountered:
Ollama Executable requires runners folder to execute which makes it little heavy specially for Windows executable, so its better to setup LFS for handling these large files.
Recommended approach is to store in LFS for all files that are larger than 50mb. Something like this may work:
The text was updated successfully, but these errors were encountered: