├── LICENSE ├── README.md ├── extension ├── background.js ├── explanation-popup.css ├── explanation-popup.html ├── explanation-popup.js ├── img │ └── llama_128.png ├── manifest.json ├── ollama.js ├── popup.css ├── popup.html └── popup.js ├── modelfile ├── llama-explain-llama2-13b-modelfile └── llama-explain-llama2-7b-modelfile └── setup └── setup.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/README.md -------------------------------------------------------------------------------- /extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/background.js -------------------------------------------------------------------------------- /extension/explanation-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/explanation-popup.css -------------------------------------------------------------------------------- /extension/explanation-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/explanation-popup.html -------------------------------------------------------------------------------- /extension/explanation-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/explanation-popup.js -------------------------------------------------------------------------------- /extension/img/llama_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/img/llama_128.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/ollama.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/ollama.js -------------------------------------------------------------------------------- /extension/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/popup.css -------------------------------------------------------------------------------- /extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/popup.html -------------------------------------------------------------------------------- /extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/extension/popup.js -------------------------------------------------------------------------------- /modelfile/llama-explain-llama2-13b-modelfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/modelfile/llama-explain-llama2-13b-modelfile -------------------------------------------------------------------------------- /modelfile/llama-explain-llama2-7b-modelfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/modelfile/llama-explain-llama2-7b-modelfile -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welniak/llama-explain/HEAD/setup/setup.sh --------------------------------------------------------------------------------