├── .gitignore ├── LICENSE-LLAMA ├── NOTICE ├── README.md ├── download-llama.sh ├── execute.sh ├── repops-demo.py └── run_docker_image.sh /.gitignore: -------------------------------------------------------------------------------- 1 | Llama-3.2-1B-Instruct/** 2 | -------------------------------------------------------------------------------- /LICENSE-LLAMA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/LICENSE-LLAMA -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/README.md -------------------------------------------------------------------------------- /download-llama.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/download-llama.sh -------------------------------------------------------------------------------- /execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/execute.sh -------------------------------------------------------------------------------- /repops-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/repops-demo.py -------------------------------------------------------------------------------- /run_docker_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gensyn-ai/repops-demo/HEAD/run_docker_image.sh --------------------------------------------------------------------------------