├── .gitattributes ├── .gitignore ├── Licence.md ├── images └── screenshot.png ├── intermidate.py ├── readme.md ├── requirements.txt └── simple.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/.gitignore -------------------------------------------------------------------------------- /Licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/Licence.md -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /intermidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/intermidate.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | ollama 3 | requests -------------------------------------------------------------------------------- /simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gravtas-J/Ollama-Chat/HEAD/simple.py --------------------------------------------------------------------------------