├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE-llama.cpp.txt ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R └── llamar.R ├── README.Rmd ├── README.md ├── man ├── llama.Rd ├── llama_default_params.Rd └── llama_init.Rd └── src ├── .gitignore ├── Makevars ├── R-llama.c ├── ggml.c ├── ggml.h ├── init.c ├── llama-util.h ├── llama.cpp └── llama.h /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-llama.cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/LICENSE-llama.cpp.txt -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- 1 | #' @useDynLib rllama, .registration=TRUE 2 | NULL 3 | 4 | -------------------------------------------------------------------------------- /R/llamar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/R/llamar.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/README.md -------------------------------------------------------------------------------- /man/llama.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/man/llama.Rd -------------------------------------------------------------------------------- /man/llama_default_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/man/llama_default_params.Rd -------------------------------------------------------------------------------- /man/llama_init.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/man/llama_init.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- 1 | PKG_CXXFLAGS=-std=c++11 2 | -------------------------------------------------------------------------------- /src/R-llama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/R-llama.c -------------------------------------------------------------------------------- /src/ggml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/ggml.c -------------------------------------------------------------------------------- /src/ggml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/ggml.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/init.c -------------------------------------------------------------------------------- /src/llama-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/llama-util.h -------------------------------------------------------------------------------- /src/llama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/llama.cpp -------------------------------------------------------------------------------- /src/llama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rllama/HEAD/src/llama.h --------------------------------------------------------------------------------