├── .gitignore ├── LICENSE ├── README.md ├── analyze.py ├── chat.ipynb ├── chat.py ├── requirements.txt └── set_keys.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/analyze.py -------------------------------------------------------------------------------- /chat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/chat.ipynb -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/chat.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | llama-cpp-python -------------------------------------------------------------------------------- /set_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallen881/Physics_Master/HEAD/set_keys.py --------------------------------------------------------------------------------