├── .github ├── ISSUE_TEMPLATE │ ├── 01-bug-low.yml │ ├── 02-bug-medium.yml │ ├── 03-bug-high.yml │ ├── 04-bug-critical.yml │ ├── 05-enhancement.yml │ ├── 06-refactor.yml │ ├── 07-refactor.yml │ └── config.yml ├── labeler.yml └── workflows │ ├── ci.yml │ ├── docs.yml │ ├── editorconfig.yml │ └── labeler.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── docs ├── creating_llamafiles.md ├── example_llamafiles.md ├── images │ ├── llamafile-640x640.png │ └── mozilla-logo-bw-rgb.png ├── index.md ├── quickstart.md ├── security.md ├── source_installation.md ├── support.md ├── technical_details.md └── troubleshooting.md ├── llama.cpp.patches ├── apply-patches.sh ├── llamafile-files │ ├── BUILD.mk │ ├── LICENSE │ ├── README.llamafile │ ├── build-info.cpp │ ├── cores.cpp │ ├── cores.h │ ├── ggml-quants-amd-avx.c │ ├── ggml-quants-amd-avx2.c │ ├── ggml-quants-amd-avx512.c │ ├── ggml-quants-amd-avx512vl.c │ ├── ggml-quants-amd-k8.c │ ├── ggml-quants-amd-ssse3.c │ ├── ggml-quants-arm80.c │ ├── ggml-quants.cpp │ ├── ggml-quants.py │ ├── ggml-vector-amd-avx.c │ ├── ggml-vector-amd-avx2.c │ ├── ggml-vector-amd-avx512.c │ ├── ggml-vector-amd-avx512bf16.c │ ├── ggml-vector-amd-avx512vl.c │ ├── ggml-vector-amd-f16c.c │ ├── ggml-vector-amd-fma.c │ ├── ggml-vector-amd-k8.c │ ├── ggml-vector-amd-ssse3.c │ ├── ggml-vector-arm80.c │ ├── ggml-vector-arm82.c │ ├── ggml-vector.cpp │ ├── ggml-vector.h │ ├── ggml-vector.inc │ ├── ggml-vector.py │ ├── imatrix │ │ ├── BUILD.mk │ │ ├── README.md │ │ ├── imatrix.1 │ │ └── imatrix.1.asc │ ├── llama-bench │ │ ├── BUILD.mk │ │ ├── bench-llamafile-zip.py │ │ ├── bench-llamafile.sh │ │ ├── embedding.cpp │ │ ├── main.1 │ │ ├── main.1.asc │ │ └── main.cpp │ ├── llamafile.h │ ├── llava │ │ ├── BUILD.mk │ │ ├── README.md │ │ ├── llava-quantize.1 │ │ ├── llava-quantize.1.asc │ │ └── llava-quantize.cpp │ ├── main │ │ ├── BUILD.mk │ │ ├── README.md │ │ ├── embedding.cpp │ │ ├── main.1 │ │ └── main.1.asc │ ├── perplexity │ │ ├── BUILD.mk │ │ ├── README.md │ │ ├── perplexity.1 │ │ └── perplexity.1.asc │ ├── quantize │ │ ├── BUILD.mk │ │ ├── quantize.1 │ │ └── quantize.1.asc │ ├── sampling.cpp │ ├── sampling.h │ ├── server │ │ ├── BUILD.mk │ │ ├── README.md │ │ ├── api_like_OAI.py │ │ ├── macsandbox.cpp │ │ ├── macsandbox.h │ │ ├── oai.h │ │ └── server.h │ └── string.h ├── patches │ ├── base64.h.patch │ ├── common.cpp.patch │ ├── common.h.patch │ ├── console.cpp.patch │ ├── ggml-alloc.c.patch │ ├── ggml-backend-impl.h.patch │ ├── ggml-backend.c.patch │ ├── ggml-backend.h.patch │ ├── ggml-common.h.patch │ ├── ggml-cuda.cu.patch │ ├── ggml-cuda.h.patch │ ├── ggml-metal.h.patch │ ├── ggml-metal.m.patch │ ├── ggml-metal.metal.patch │ ├── ggml-quants.inc.patch │ ├── ggml.c.patch │ ├── ggml.h.patch │ ├── grammar-parser.cpp.patch │ ├── imatrix_imatrix.cpp.patch │ ├── json-schema-to-grammar.h.patch │ ├── llama-bench_README.md.patch │ ├── llama-bench_llama-bench.cpp.patch │ ├── llama-grammar.cpp.patch │ ├── llama-grammar.h.patch │ ├── llama-impl.h.patch │ ├── llama-sampling.cpp.patch │ ├── llama-sampling.h.patch │ ├── llama-vocab.cpp.patch │ ├── llama-vocab.h.patch │ ├── llama.cpp.patch │ ├── llama.h.patch │ ├── llava_clip.cpp.patch │ ├── llava_convert-image-encoder-to-gguf.py.patch │ ├── llava_llava-cli.cpp.patch │ ├── llava_llava-surgery.py.patch │ ├── llava_llava.cpp.patch │ ├── llava_llava.h.patch │ ├── log.h.patch │ ├── main_main.cpp.patch │ ├── perplexity_perplexity.cpp.patch │ ├── quantize_quantize.cpp.patch │ ├── sampling.cpp.patch │ ├── sampling.h.patch │ ├── server_chat.mjs.patch │ ├── server_chat.sh.patch │ ├── server_deps.sh.patch │ ├── server_httplib.h.patch │ ├── server_public_completion.js.patch │ ├── server_public_index.html.patch │ ├── server_public_index.js.patch │ ├── server_public_json-schema-to-grammar.mjs.patch │ ├── server_server.cpp.patch │ ├── server_utils.h.patch │ └── unicode.cpp.patch └── renames.sh ├── llamafile ├── .clang-format ├── BUILD.mk ├── addnl.c ├── ansiblas.h ├── bench.h ├── bestline.c ├── bestline.h ├── bincompare.c ├── chatbot.h ├── chatbot_comm.cpp ├── chatbot_comp.cpp ├── chatbot_eval.cpp ├── chatbot_file.cpp ├── chatbot_help.cpp ├── chatbot_hint.cpp ├── chatbot_hist.cpp ├── chatbot_logo.cpp ├── chatbot_main.cpp ├── chatbot_repl.cpp ├── check_cpu.c ├── color.h ├── compcap.cu ├── compute.cpp ├── compute.h ├── copy.sh ├── core_manager.cpp ├── core_manager.h ├── crash.c ├── crash.h ├── cuda.bat ├── cuda.c ├── cuda.h ├── cuda.sh ├── cudaprops.cu ├── curl.cpp ├── datauri.cpp ├── datauri.h ├── datauri_test.cpp ├── db.cpp ├── db.h ├── debug.cpp ├── debug.h ├── dll3.c ├── dll3.h ├── explain_a_warp_kernel.cpp ├── extract.c ├── flags.cpp ├── flags.h ├── float.h ├── fp16.h ├── gemm.h ├── get_app_dir.c ├── get_tmp_dir.c ├── govern.cpp ├── gpu.c ├── half.h ├── has.c ├── help.c ├── hex2xterm.cpp ├── hextoint.cpp ├── high.cpp ├── highlight │ ├── .clang-format │ ├── BUILD.mk │ ├── color_bleeder.cpp │ ├── highlight.cpp │ ├── highlight.h │ ├── highlight_ada.cpp │ ├── highlight_asm.cpp │ ├── highlight_basic.cpp │ ├── highlight_bnf.cpp │ ├── highlight_c.cpp │ ├── highlight_c_test.cpp │ ├── highlight_cmake.cpp │ ├── highlight_cobol.cpp │ ├── highlight_create.gperf │ ├── highlight_csharp.cpp │ ├── highlight_css.cpp │ ├── highlight_d.cpp │ ├── highlight_forth.cpp │ ├── highlight_fortran.cpp │ ├── highlight_go.cpp │ ├── highlight_haskell.cpp │ ├── highlight_html.cpp │ ├── highlight_java.cpp │ ├── highlight_js.cpp │ ├── highlight_julia.cpp │ ├── highlight_kotlin.cpp │ ├── highlight_ld.cpp │ ├── highlight_lisp.cpp │ ├── highlight_lua.cpp │ ├── highlight_m4.cpp │ ├── highlight_make.cpp │ ├── highlight_markdown.cpp │ ├── highlight_matlab.cpp │ ├── highlight_ocaml.cpp │ ├── highlight_pascal.cpp │ ├── highlight_perl.cpp │ ├── highlight_php.cpp │ ├── highlight_python.cpp │ ├── highlight_python_test.cpp │ ├── highlight_r.cpp │ ├── highlight_ruby.cpp │ ├── highlight_rust.cpp │ ├── highlight_scala.cpp │ ├── highlight_shell.cpp │ ├── highlight_sql.cpp │ ├── highlight_swift.cpp │ ├── highlight_tcl.cpp │ ├── highlight_test.cpp │ ├── highlight_tex.cpp │ ├── highlight_txt.cpp │ ├── highlight_typescript.cpp │ ├── highlight_zig.cpp │ ├── is_keyword_ada.gperf │ ├── is_keyword_ada_constant.gperf │ ├── is_keyword_asm_prefix.gperf │ ├── is_keyword_asm_qualifier.gperf │ ├── is_keyword_basic.gperf │ ├── is_keyword_basic_builtin.gperf │ ├── is_keyword_basic_constant.gperf │ ├── is_keyword_basic_type.gperf │ ├── is_keyword_c.gperf │ ├── is_keyword_c_builtin.gperf │ ├── is_keyword_c_constant.gperf │ ├── is_keyword_c_pod.gperf │ ├── is_keyword_c_type.gperf │ ├── is_keyword_cmake.gperf │ ├── is_keyword_cobol.gperf │ ├── is_keyword_cpp.gperf │ ├── is_keyword_csharp.gperf │ ├── is_keyword_csharp_constant.gperf │ ├── is_keyword_css_at.gperf │ ├── is_keyword_css_bang.gperf │ ├── is_keyword_cxx.gperf │ ├── is_keyword_d.gperf │ ├── is_keyword_d_constant.gperf │ ├── is_keyword_forth.gperf │ ├── is_keyword_forth_def.gperf │ ├── is_keyword_fortran.gperf │ ├── is_keyword_fortran_builtin.gperf │ ├── is_keyword_fortran_type.gperf │ ├── is_keyword_go.gperf │ ├── is_keyword_go_type.gperf │ ├── is_keyword_haskell.gperf │ ├── is_keyword_java.gperf │ ├── is_keyword_java_constant.gperf │ ├── is_keyword_js.gperf │ ├── is_keyword_js_builtin.gperf │ ├── is_keyword_js_constant.gperf │ ├── is_keyword_julia.gperf │ ├── is_keyword_kotlin.gperf │ ├── is_keyword_ld.gperf │ ├── is_keyword_ld_builtin.gperf │ ├── is_keyword_ld_warning.gperf │ ├── is_keyword_lisp.gperf │ ├── is_keyword_lua.gperf │ ├── is_keyword_lua_builtin.gperf │ ├── is_keyword_lua_constant.gperf │ ├── is_keyword_m4.gperf │ ├── is_keyword_make.gperf │ ├── is_keyword_make_builtin.gperf │ ├── is_keyword_matlab.gperf │ ├── is_keyword_matlab_builtin.gperf │ ├── is_keyword_matlab_constant.gperf │ ├── is_keyword_ocaml.gperf │ ├── is_keyword_ocaml_builtin.gperf │ ├── is_keyword_ocaml_constant.gperf │ ├── is_keyword_pascal.gperf │ ├── is_keyword_pascal_builtin.gperf │ ├── is_keyword_pascal_type.gperf │ ├── is_keyword_perl.gperf │ ├── is_keyword_php.gperf │ ├── is_keyword_php_constant.gperf │ ├── is_keyword_python.gperf │ ├── is_keyword_python_builtin.gperf │ ├── is_keyword_python_constant.gperf │ ├── is_keyword_r.gperf │ ├── is_keyword_r_builtin.gperf │ ├── is_keyword_r_constant.gperf │ ├── is_keyword_ruby.gperf │ ├── is_keyword_ruby_builtin.gperf │ ├── is_keyword_ruby_constant.gperf │ ├── is_keyword_rust.gperf │ ├── is_keyword_rust_constant.gperf │ ├── is_keyword_rust_type.gperf │ ├── is_keyword_scala.gperf │ ├── is_keyword_shell.gperf │ ├── is_keyword_shell_builtin.gperf │ ├── is_keyword_sql.gperf │ ├── is_keyword_sql_type.gperf │ ├── is_keyword_swift.gperf │ ├── is_keyword_swift_builtin.gperf │ ├── is_keyword_swift_constant.gperf │ ├── is_keyword_swift_type.gperf │ ├── is_keyword_tcl.gperf │ ├── is_keyword_tcl_builtin.gperf │ ├── is_keyword_tcl_type.gperf │ ├── is_keyword_typescript.gperf │ ├── is_keyword_typescript_type.gperf │ ├── is_keyword_zig.gperf │ ├── is_keyword_zig_builtin.gperf │ ├── is_keyword_zig_constant.gperf │ ├── is_keyword_zig_type.gperf │ ├── util.cpp │ └── util.h ├── image.cpp ├── image.h ├── iqk_mul_mat.inc ├── iqk_mul_mat_amd_avx2.cpp ├── iqk_mul_mat_amd_zen4.cpp ├── iqk_mul_mat_arm82.cpp ├── is_file_newer_than.c ├── is_loopback_ip.cpp ├── is_rgb_terminal.cpp ├── iso8601.cpp ├── json.cpp ├── json.h ├── json_test.cpp ├── latency.h ├── launch_browser.c ├── llama.cpp ├── llama.h ├── llamafile-250x250.png ├── llamafile-640x640.png ├── llamafile.c ├── llamafile.h ├── llamafile.svg ├── lockable.h ├── log.c ├── log.h ├── macros.h ├── memlog.inc ├── metal.c ├── micros.h ├── mozilla-logo-bw-rgb.png ├── naive.h ├── net.h ├── numba.h ├── parse_cidr.cpp ├── parse_cidr_test.cpp ├── parse_ip.cpp ├── pick_a_warp_kernel.c ├── pool.cpp ├── pool.h ├── pool_cancel_test.cpp ├── pool_test.cpp ├── release.sh ├── rocm.bat ├── rocm.sh ├── rollup.py ├── schema.sql ├── schlep.c ├── server │ ├── .clang-format │ ├── BUILD.mk │ ├── README.md │ ├── atob.cpp │ ├── atom.cpp │ ├── atom.h │ ├── atom_test.cpp │ ├── atomize.cpp │ ├── buffer.cpp │ ├── buffer.h │ ├── cleanup.cpp │ ├── cleanup.h │ ├── client.cpp │ ├── client.h │ ├── db.cpp │ ├── doc │ │ ├── embedding.md │ │ ├── endpoints.md │ │ ├── getting_started.md │ │ ├── index.md │ │ ├── technical_details.md │ │ ├── tokenize.md │ │ ├── v1_chat_completions.md │ │ └── v1_completions.md │ ├── embedding.cpp │ ├── fastjson.cpp │ ├── fastjson.h │ ├── fastjson_test.cpp │ ├── flagz.cpp │ ├── image.cpp │ ├── image.h │ ├── image_test.cpp │ ├── listen.cpp │ ├── log.cpp │ ├── log.h │ ├── main.1 │ ├── main.1.asc │ ├── main.cpp │ ├── or_empty.cpp │ ├── prog.cpp │ ├── prog.h │ ├── server.cpp │ ├── server.h │ ├── signals.cpp │ ├── signals.h │ ├── slot.cpp │ ├── slot.h │ ├── slot_entry.cpp │ ├── slot_entry.h │ ├── slots.cpp │ ├── slots.h │ ├── slotz.cpp │ ├── time.cpp │ ├── time.h │ ├── tokenbucket.cpp │ ├── tokenbucket.h │ ├── tokenbucket_test.cpp │ ├── tokenize.cpp │ ├── utf.cpp │ ├── utils.h │ ├── v1_chat_completions.cpp │ ├── v1_completions.cpp │ ├── v1_models.cpp │ ├── worker.cpp │ ├── worker.h │ ├── writev.cpp │ └── www │ │ ├── chatbot.css │ │ ├── chatbot.js │ │ ├── chatbot.png │ │ ├── clipboard.js │ │ ├── close.svg │ │ ├── ctype.js │ │ ├── favicon.ico │ │ ├── gear.svg │ │ ├── highlight.css │ │ ├── highlight.js │ │ ├── highlight_ada.js │ │ ├── highlight_asm.js │ │ ├── highlight_basic.js │ │ ├── highlight_c.js │ │ ├── highlight_cmake.js │ │ ├── highlight_cobol.js │ │ ├── highlight_cpp.js │ │ ├── highlight_csharp.js │ │ ├── highlight_css.js │ │ ├── highlight_cxx.js │ │ ├── highlight_d.js │ │ ├── highlight_forth.js │ │ ├── highlight_fortran.js │ │ ├── highlight_go.js │ │ ├── highlight_haskell.js │ │ ├── highlight_html.js │ │ ├── highlight_java.js │ │ ├── highlight_js.js │ │ ├── highlight_julia.js │ │ ├── highlight_kotlin.js │ │ ├── highlight_ld.js │ │ ├── highlight_lisp.js │ │ ├── highlight_lua.js │ │ ├── highlight_m4.js │ │ ├── highlight_make.js │ │ ├── highlight_markdown.js │ │ ├── highlight_matlab.js │ │ ├── highlight_ocaml.js │ │ ├── highlight_pascal.js │ │ ├── highlight_perl.js │ │ ├── highlight_php.js │ │ ├── highlight_python.js │ │ ├── highlight_r.js │ │ ├── highlight_ruby.js │ │ ├── highlight_rust.js │ │ ├── highlight_scala.js │ │ ├── highlight_shell.js │ │ ├── highlight_sql.js │ │ ├── highlight_swift.js │ │ ├── highlight_tcl.js │ │ ├── highlight_tex.js │ │ ├── highlight_txt.js │ │ ├── highlight_typescript.js │ │ ├── highlight_zig.js │ │ ├── index.html │ │ ├── menu.svg │ │ ├── ooc.svg │ │ ├── redo.svg │ │ ├── render_markdown.js │ │ ├── send.svg │ │ ├── stop.svg │ │ ├── test │ │ ├── test.css │ │ ├── test.html │ │ ├── test.js │ │ └── test.md │ │ └── upload.svg ├── sgemm.cpp ├── sgemm.h ├── sgemm_matmul_test.cpp ├── sgemm_sss_test.cpp ├── sgemm_vecdot_test.cpp ├── simple.cpp ├── slicehf.c ├── slurp.cpp ├── socket.cpp ├── sslroots.cpp ├── string.cpp ├── string.h ├── tanhf.h ├── tester.cu ├── tester.h ├── thread.h ├── thread_test.cpp ├── threadlocal.h ├── tinyblas.cu ├── tinyblas.h ├── tinyblas_cpu.h ├── tinyblas_cpu_mixmul.inc ├── tinyblas_cpu_mixmul_amd_avx.cpp ├── tinyblas_cpu_mixmul_amd_avx2.cpp ├── tinyblas_cpu_mixmul_amd_avx512f.cpp ├── tinyblas_cpu_mixmul_amd_avxvnni.cpp ├── tinyblas_cpu_mixmul_amd_fma.cpp ├── tinyblas_cpu_mixmul_amd_zen4.cpp ├── tinyblas_cpu_mixmul_arm80.cpp ├── tinyblas_cpu_mixmul_arm82.cpp ├── tinyblas_cpu_sgemm.inc ├── tinyblas_cpu_sgemm_amd_avx.cpp ├── tinyblas_cpu_sgemm_amd_avx2.cpp ├── tinyblas_cpu_sgemm_amd_avx512f.cpp ├── tinyblas_cpu_sgemm_amd_avxvnni.cpp ├── tinyblas_cpu_sgemm_amd_fma.cpp ├── tinyblas_cpu_sgemm_amd_zen4.cpp ├── tinyblas_cpu_sgemm_arm80.cpp ├── tinyblas_cpu_sgemm_arm82.cpp ├── tinyblas_cpu_unsupported.cpp ├── tinyblas_mnpack.py ├── tinyblas_test.cu ├── tokenize.cpp ├── trace.c ├── trace.h ├── trust.cpp ├── trust.h ├── utils.h ├── vector.h ├── version.h ├── vmathf_test.cpp ├── x.c ├── x.h ├── xterm.cpp ├── xterm.h ├── zip.c ├── zip.h ├── zipalign.1 ├── zipalign.1.asc ├── zipalign.c └── zipcheck.c ├── localscore ├── BUILD.mk ├── README.md ├── apple.cpp ├── apple.h ├── ascii_digits.h ├── benchmark.cpp ├── benchmark.h ├── cmd.cpp ├── cmd.h ├── cuda.bat ├── cuda.sh ├── doc │ └── troubleshooting.md ├── http.cpp ├── http.h ├── localscore-example.jpeg ├── localscore.cpp ├── localscore.h ├── main.cpp ├── net.h ├── nvml.cpp ├── nvml.h ├── powersampler.cpp ├── powersampler.h ├── printer.cpp ├── printer.h ├── rsmi.cpp ├── rsmi.h ├── system.cpp ├── system.h └── utils.h ├── mkdocs.yml ├── models └── TinyLLama-v0.1-5M-F16.gguf ├── stable-diffusion.cpp.patches ├── apply-patches.sh ├── llamafile-files │ ├── BUILD.mk │ ├── README.llamafile │ ├── darts.h │ ├── main.cpp │ ├── miniz.h │ ├── zip.c │ └── zip.h └── patches │ └── save.patch ├── third_party ├── BUILD.mk ├── double-conversion │ ├── .gitignore │ ├── AUTHORS │ ├── BUILD.mk │ ├── LICENSE │ ├── README.llamafile │ ├── SConscript │ ├── bignum-dtoa.cc │ ├── bignum-dtoa.h │ ├── bignum.cc │ ├── bignum.h │ ├── cached-powers.cc │ ├── cached-powers.h │ ├── diy-fp.h │ ├── double-conversion.h │ ├── double-to-string.cc │ ├── double-to-string.h │ ├── fast-dtoa.cc │ ├── fast-dtoa.h │ ├── fixed-dtoa.cc │ ├── fixed-dtoa.h │ ├── ieee.h │ ├── string-to-double.cc │ ├── string-to-double.h │ ├── strtod.cc │ ├── strtod.h │ └── utils.h ├── mbedtls │ ├── BUILD.mk │ ├── LICENSE │ ├── README.cosmo │ ├── README.llamafile │ ├── aes.c │ ├── aes.h │ ├── aesce.c │ ├── aesce.h │ ├── aesni.c │ ├── aesni.h │ ├── asn1.h │ ├── asn1parse.c │ ├── asn1write.c │ ├── asn1write.h │ ├── base64.c │ ├── base64.h │ ├── bigmul.c │ ├── bigmul4.c │ ├── bignum.c │ ├── bignum.h │ ├── bignum_internal.h │ ├── bigshift.c │ ├── blake2b256.c │ ├── ccm.c │ ├── ccm.h │ ├── certs.c │ ├── certs.h │ ├── chacha20.c │ ├── chacha20.h │ ├── chachapoly.c │ ├── chachapoly.h │ ├── check.inc │ ├── chk.h │ ├── cipher.c │ ├── cipher.h │ ├── cipher_internal.h │ ├── cipher_wrap.c │ ├── common.h │ ├── config.h │ ├── ctr_drbg.c │ ├── ctr_drbg.h │ ├── debug.c │ ├── debug.h │ ├── des.c │ ├── des.h │ ├── describecode.c │ ├── dhm.c │ ├── dhm.h │ ├── ecdh.c │ ├── ecdh.h │ ├── ecdh_everest.c │ ├── ecdh_everest.h │ ├── ecdsa.c │ ├── ecdsa.h │ ├── ecp.c │ ├── ecp.h │ ├── ecp256.c │ ├── ecp384.c │ ├── ecp_curves.c │ ├── ecp_internal.h │ ├── ecpshl.c │ ├── endian.h │ ├── entropy.c │ ├── entropy.h │ ├── entropy_poll.c │ ├── entropy_poll.h │ ├── error.c │ ├── error.h │ ├── everest.c │ ├── everest.h │ ├── fastdiv.h │ ├── formatclientciphers.c │ ├── gcm.c │ ├── gcm.h │ ├── getalertdescription.c │ ├── getciphersuite.c │ ├── getciphersuitename.c │ ├── getsslstatename.c │ ├── hkdf.c │ ├── hkdf.h │ ├── hmac_drbg.c │ ├── hmac_drbg.h │ ├── iana.h │ ├── isciphersuitegood.c │ ├── karatsuba.c │ ├── math.h │ ├── md.c │ ├── md.h │ ├── md5.c │ ├── md5.h │ ├── md5t.c │ ├── mdtype.c │ ├── memory_buffer_alloc.c │ ├── memory_buffer_alloc.h │ ├── net_sockets.c │ ├── net_sockets.h │ ├── nist_kw.c │ ├── nist_kw.h │ ├── notice.c │ ├── oid.c │ ├── oid.h │ ├── param.c │ ├── pem.c │ ├── pem.h │ ├── pk.c │ ├── pk.h │ ├── pk_internal.h │ ├── pk_wrap.c │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkparse.c │ ├── pktype.c │ ├── pkwrite.c │ ├── platform.c │ ├── platform.h │ ├── poly1305.c │ ├── poly1305.h │ ├── profile.h │ ├── rando.c │ ├── rsa.c │ ├── rsa.h │ ├── rsa_internal.c │ ├── rsa_internal.h │ ├── san.c │ ├── san.h │ ├── secp256r1.c │ ├── secp384r1.c │ ├── select.h │ ├── sha1.c │ ├── sha1.h │ ├── sha1t.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256t.c │ ├── sha512.c │ ├── sha512.h │ ├── sha512t.c │ ├── shakedescription.c │ ├── shiftright-avx.c │ ├── shiftright.c │ ├── sigalg.c │ ├── speed.sh │ ├── srtp.c │ ├── ssl.h │ ├── ssl_cache.c │ ├── ssl_cache.h │ ├── ssl_ciphersuites.c │ ├── ssl_ciphersuites.h │ ├── ssl_cli.c │ ├── ssl_cookie.c │ ├── ssl_cookie.h │ ├── ssl_internal.h │ ├── ssl_invasive.h │ ├── ssl_msg.c │ ├── ssl_srv.c │ ├── ssl_ticket.c │ ├── ssl_ticket.h │ ├── ssl_tls.c │ ├── ssl_tls13_keys.c │ ├── ssl_tls13_keys.h │ ├── sslroot │ │ ├── amazon.pem │ │ ├── certum.pem │ │ ├── comodo.pem │ │ ├── digicert.pem │ │ ├── geotrust.pem │ │ ├── globalsign.pem │ │ ├── godaddy.pem │ │ ├── google.pem │ │ ├── isrg.pem │ │ ├── quovadis.pem │ │ ├── redbean.pem │ │ ├── show.sh │ │ ├── starfield.pem │ │ └── verisign.pem │ ├── sslroots.c │ ├── version.h │ ├── x509.c │ ├── x509.h │ ├── x509_create.c │ ├── x509_crl.c │ ├── x509_crl.h │ ├── x509_crt.c │ ├── x509_crt.h │ ├── x509_csr.c │ ├── x509_csr.h │ ├── x509write_crt.c │ ├── x509write_csr.c │ └── zeroize.c ├── sqlite │ ├── BUILD.mk │ ├── README.llamafile │ ├── shell.c │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h └── stb │ ├── BUILD.mk │ ├── README.llamafile │ ├── stb_image.c │ ├── stb_image.h │ ├── stb_image_resize2.c │ ├── stb_image_resize2.h │ ├── stb_image_write.c │ ├── stb_image_write.h │ ├── stb_vorbis.c │ └── stb_vorbis.h └── whisper.cpp.patches ├── apply-patches.sh ├── llamafile-files ├── BUILD.mk ├── README.llamafile ├── README.md ├── color.cpp ├── color.h ├── doc │ ├── getting-started.md │ ├── gpu.md │ ├── index.md │ ├── packaging.md │ ├── server.md │ └── translate.md ├── dr_wav.c ├── ggml_extend.hpp ├── jfk.wav ├── main.1 ├── main.1.asc ├── mic2raw.cpp ├── mic2txt.cpp ├── miniaudio.c ├── miniaudio.h ├── slurp.cpp ├── slurp.h ├── whisper-mel-cuda.hpp └── whisper-mel.hpp └── patches ├── 001-server-llamafile-integration.patch ├── 002-common-cpp-llamafile-integration.patch ├── 003-common-h-llamafile-integration.patch ├── 004-whisper-cpp-llamafile-integration.patch ├── 005-whisper-h-llamafile-integration.patch ├── 006-main-cpp-llamafile-integration.patch ├── 007-stream-cpp-llamafile-integration.patch ├── 008-whisper-mel-cuda-cu-llamafile-integration.patch ├── 009-grammar-parser-cpp-llamafile-integration.patch ├── 010-grammar-parser-h-llamafile-integration.patch ├── 011-dr-wav-h-llamafile-integration.patch └── 012-httplib-h-llamafile-integration.patch /.github/ISSUE_TEMPLATE/01-bug-low.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/01-bug-low.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug-medium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/02-bug-medium.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-bug-high.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/03-bug-high.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-bug-critical.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/04-bug-critical.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05-enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/05-enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/06-refactor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/06-refactor.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/07-refactor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/07-refactor.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/editorconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/workflows/editorconfig.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/creating_llamafiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/creating_llamafiles.md -------------------------------------------------------------------------------- /docs/example_llamafiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/example_llamafiles.md -------------------------------------------------------------------------------- /docs/images/llamafile-640x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/images/llamafile-640x640.png -------------------------------------------------------------------------------- /docs/images/mozilla-logo-bw-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/images/mozilla-logo-bw-rgb.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/source_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/source_installation.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/support.md -------------------------------------------------------------------------------- /docs/technical_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/technical_details.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /llama.cpp.patches/apply-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/apply-patches.sh -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/LICENSE -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/README.llamafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/README.llamafile -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/build-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/build-info.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/cores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/cores.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/cores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/cores.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-quants-arm80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-quants-arm80.c -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-quants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-quants.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-quants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-quants.py -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector-arm80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector-arm80.c -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector-arm82.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector-arm82.c -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector.inc -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/ggml-vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/ggml-vector.py -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/imatrix/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/imatrix/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/imatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/imatrix/README.md -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/imatrix/imatrix.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/imatrix/imatrix.1 -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/llama-bench/main.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/llama-bench/main.1 -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/llamafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/llamafile.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/llava/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/llava/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/llava/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/llava/README.md -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/main/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/main/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/main/README.md -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/main/embedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/main/embedding.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/main/main.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/main/main.1 -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/main/main.1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/main/main.1.asc -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/perplexity/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/perplexity/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/quantize/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/quantize/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/quantize/quantize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/quantize/quantize.1 -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/sampling.cpp -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/sampling.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/server/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/server/BUILD.mk -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/server/README.md -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/server/macsandbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/server/macsandbox.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/server/oai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/server/oai.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/server/server.h -------------------------------------------------------------------------------- /llama.cpp.patches/llamafile-files/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/llamafile-files/string.h -------------------------------------------------------------------------------- /llama.cpp.patches/patches/base64.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/base64.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/common.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/common.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/common.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/common.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/console.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/console.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-alloc.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-alloc.c.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-backend-impl.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-backend-impl.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-backend.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-backend.c.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-backend.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-backend.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-common.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-common.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-cuda.cu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-cuda.cu.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-cuda.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-cuda.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-metal.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-metal.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-metal.m.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-metal.m.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-metal.metal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-metal.metal.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml-quants.inc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml-quants.inc.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml.c.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/ggml.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/ggml.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/grammar-parser.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/grammar-parser.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/imatrix_imatrix.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/imatrix_imatrix.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-bench_README.md.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-bench_README.md.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-grammar.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-grammar.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-grammar.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-grammar.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-impl.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-impl.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-sampling.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-sampling.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-sampling.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-sampling.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-vocab.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-vocab.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama-vocab.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama-vocab.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llama.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llama.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llava_clip.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llava_clip.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llava_llava-cli.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llava_llava-cli.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llava_llava.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llava_llava.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/llava_llava.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/llava_llava.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/log.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/log.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/main_main.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/main_main.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/quantize_quantize.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/quantize_quantize.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/sampling.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/sampling.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/sampling.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/sampling.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_chat.mjs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_chat.mjs.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_chat.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_chat.sh.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_deps.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_deps.sh.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_httplib.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_httplib.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_server.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_server.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/server_utils.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/server_utils.h.patch -------------------------------------------------------------------------------- /llama.cpp.patches/patches/unicode.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/patches/unicode.cpp.patch -------------------------------------------------------------------------------- /llama.cpp.patches/renames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llama.cpp.patches/renames.sh -------------------------------------------------------------------------------- /llamafile/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/.clang-format -------------------------------------------------------------------------------- /llamafile/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/BUILD.mk -------------------------------------------------------------------------------- /llamafile/addnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/addnl.c -------------------------------------------------------------------------------- /llamafile/ansiblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/ansiblas.h -------------------------------------------------------------------------------- /llamafile/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/bench.h -------------------------------------------------------------------------------- /llamafile/bestline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/bestline.c -------------------------------------------------------------------------------- /llamafile/bestline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/bestline.h -------------------------------------------------------------------------------- /llamafile/bincompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/bincompare.c -------------------------------------------------------------------------------- /llamafile/chatbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot.h -------------------------------------------------------------------------------- /llamafile/chatbot_comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_comm.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_comp.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_eval.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_file.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_help.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_hint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_hint.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_hist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_hist.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_logo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_logo.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_main.cpp -------------------------------------------------------------------------------- /llamafile/chatbot_repl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/chatbot_repl.cpp -------------------------------------------------------------------------------- /llamafile/check_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/check_cpu.c -------------------------------------------------------------------------------- /llamafile/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/color.h -------------------------------------------------------------------------------- /llamafile/compcap.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/compcap.cu -------------------------------------------------------------------------------- /llamafile/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/compute.cpp -------------------------------------------------------------------------------- /llamafile/compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/compute.h -------------------------------------------------------------------------------- /llamafile/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/copy.sh -------------------------------------------------------------------------------- /llamafile/core_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/core_manager.cpp -------------------------------------------------------------------------------- /llamafile/core_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/core_manager.h -------------------------------------------------------------------------------- /llamafile/crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/crash.c -------------------------------------------------------------------------------- /llamafile/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/crash.h -------------------------------------------------------------------------------- /llamafile/cuda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/cuda.bat -------------------------------------------------------------------------------- /llamafile/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/cuda.c -------------------------------------------------------------------------------- /llamafile/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/cuda.h -------------------------------------------------------------------------------- /llamafile/cuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/cuda.sh -------------------------------------------------------------------------------- /llamafile/cudaprops.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/cudaprops.cu -------------------------------------------------------------------------------- /llamafile/curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/curl.cpp -------------------------------------------------------------------------------- /llamafile/datauri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/datauri.cpp -------------------------------------------------------------------------------- /llamafile/datauri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/datauri.h -------------------------------------------------------------------------------- /llamafile/datauri_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/datauri_test.cpp -------------------------------------------------------------------------------- /llamafile/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/db.cpp -------------------------------------------------------------------------------- /llamafile/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/db.h -------------------------------------------------------------------------------- /llamafile/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/debug.cpp -------------------------------------------------------------------------------- /llamafile/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/debug.h -------------------------------------------------------------------------------- /llamafile/dll3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/dll3.c -------------------------------------------------------------------------------- /llamafile/dll3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/dll3.h -------------------------------------------------------------------------------- /llamafile/explain_a_warp_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/explain_a_warp_kernel.cpp -------------------------------------------------------------------------------- /llamafile/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/extract.c -------------------------------------------------------------------------------- /llamafile/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/flags.cpp -------------------------------------------------------------------------------- /llamafile/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/flags.h -------------------------------------------------------------------------------- /llamafile/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/float.h -------------------------------------------------------------------------------- /llamafile/fp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/fp16.h -------------------------------------------------------------------------------- /llamafile/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/gemm.h -------------------------------------------------------------------------------- /llamafile/get_app_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/get_app_dir.c -------------------------------------------------------------------------------- /llamafile/get_tmp_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/get_tmp_dir.c -------------------------------------------------------------------------------- /llamafile/govern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/govern.cpp -------------------------------------------------------------------------------- /llamafile/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/gpu.c -------------------------------------------------------------------------------- /llamafile/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/half.h -------------------------------------------------------------------------------- /llamafile/has.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/has.c -------------------------------------------------------------------------------- /llamafile/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/help.c -------------------------------------------------------------------------------- /llamafile/hex2xterm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/hex2xterm.cpp -------------------------------------------------------------------------------- /llamafile/hextoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/hextoint.cpp -------------------------------------------------------------------------------- /llamafile/high.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/high.cpp -------------------------------------------------------------------------------- /llamafile/highlight/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/.clang-format -------------------------------------------------------------------------------- /llamafile/highlight/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/BUILD.mk -------------------------------------------------------------------------------- /llamafile/highlight/color_bleeder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/color_bleeder.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight.h -------------------------------------------------------------------------------- /llamafile/highlight/highlight_ada.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_ada.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_asm.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_basic.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_bnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_bnf.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_c.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_c_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_c_test.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_cmake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_cmake.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_cobol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_cobol.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_create.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_create.gperf -------------------------------------------------------------------------------- /llamafile/highlight/highlight_csharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_csharp.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_css.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_css.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_d.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_forth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_forth.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_fortran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_fortran.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_go.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_go.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_haskell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_haskell.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_html.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_java.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_js.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_julia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_julia.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_kotlin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_kotlin.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_ld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_ld.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_lisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_lisp.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_lua.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_m4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_m4.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_make.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_make.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_markdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_markdown.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_matlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_matlab.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_ocaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_ocaml.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_pascal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_pascal.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_perl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_perl.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_php.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_php.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_python.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_python_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_python_test.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_r.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_ruby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_ruby.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_rust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_rust.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_scala.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_scala.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_shell.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_sql.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_swift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_swift.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_tcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_tcl.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_test.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_tex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_tex.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_txt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_txt.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_typescript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_typescript.cpp -------------------------------------------------------------------------------- /llamafile/highlight/highlight_zig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/highlight_zig.cpp -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ada.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ada.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ada_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ada_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_asm_prefix.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_asm_prefix.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_asm_qualifier.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_asm_qualifier.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_basic.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_basic.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_basic_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_basic_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_basic_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_basic_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_basic_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_basic_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_c.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_c.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_c_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_c_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_c_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_c_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_c_pod.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_c_pod.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_c_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_c_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_cmake.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_cmake.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_cobol.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_cobol.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_cpp.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_cpp.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_csharp.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_csharp.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_csharp_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_csharp_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_css_at.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_css_at.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_css_bang.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_css_bang.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_cxx.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_cxx.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_d.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_d.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_d_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_d_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_forth.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_forth.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_forth_def.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_forth_def.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_fortran.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_fortran.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_fortran_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_fortran_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_fortran_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_fortran_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_go.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_go.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_go_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_go_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_haskell.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_haskell.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_java.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_java.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_java_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_java_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_js.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_js.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_js_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_js_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_js_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_js_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_julia.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_julia.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_kotlin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_kotlin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ld.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ld.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ld_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ld_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ld_warning.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ld_warning.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_lisp.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_lisp.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_lua.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_lua.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_lua_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_lua_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_lua_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_lua_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_m4.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_m4.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_make.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_make.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_make_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_make_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_matlab.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_matlab.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_matlab_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_matlab_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_matlab_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_matlab_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ocaml.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ocaml.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ocaml_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ocaml_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ocaml_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ocaml_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_pascal.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_pascal.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_pascal_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_pascal_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_pascal_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_pascal_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_perl.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_perl.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_php.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_php.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_php_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_php_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_python.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_python.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_python_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_python_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_python_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_python_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_r.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_r.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_r_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_r_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_r_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_r_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ruby.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ruby.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ruby_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ruby_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_ruby_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_ruby_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_rust.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_rust.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_rust_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_rust_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_rust_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_rust_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_scala.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_scala.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_shell.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_shell.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_shell_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_shell_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_sql.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_sql.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_sql_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_sql_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_swift.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_swift.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_swift_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_swift_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_swift_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_swift_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_swift_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_swift_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_tcl.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_tcl.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_tcl_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_tcl_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_tcl_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_tcl_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_typescript.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_typescript.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_zig.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_zig.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_zig_builtin.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_zig_builtin.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_zig_constant.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_zig_constant.gperf -------------------------------------------------------------------------------- /llamafile/highlight/is_keyword_zig_type.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/is_keyword_zig_type.gperf -------------------------------------------------------------------------------- /llamafile/highlight/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/util.cpp -------------------------------------------------------------------------------- /llamafile/highlight/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/highlight/util.h -------------------------------------------------------------------------------- /llamafile/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/image.cpp -------------------------------------------------------------------------------- /llamafile/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/image.h -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/iqk_mul_mat.inc -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/iqk_mul_mat_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/iqk_mul_mat_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/iqk_mul_mat_arm82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/iqk_mul_mat_arm82.cpp -------------------------------------------------------------------------------- /llamafile/is_file_newer_than.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/is_file_newer_than.c -------------------------------------------------------------------------------- /llamafile/is_loopback_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/is_loopback_ip.cpp -------------------------------------------------------------------------------- /llamafile/is_rgb_terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/is_rgb_terminal.cpp -------------------------------------------------------------------------------- /llamafile/iso8601.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/iso8601.cpp -------------------------------------------------------------------------------- /llamafile/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/json.cpp -------------------------------------------------------------------------------- /llamafile/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/json.h -------------------------------------------------------------------------------- /llamafile/json_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/json_test.cpp -------------------------------------------------------------------------------- /llamafile/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/latency.h -------------------------------------------------------------------------------- /llamafile/launch_browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/launch_browser.c -------------------------------------------------------------------------------- /llamafile/llama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llama.cpp -------------------------------------------------------------------------------- /llamafile/llama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llama.h -------------------------------------------------------------------------------- /llamafile/llamafile-250x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llamafile-250x250.png -------------------------------------------------------------------------------- /llamafile/llamafile-640x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llamafile-640x640.png -------------------------------------------------------------------------------- /llamafile/llamafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llamafile.c -------------------------------------------------------------------------------- /llamafile/llamafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llamafile.h -------------------------------------------------------------------------------- /llamafile/llamafile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/llamafile.svg -------------------------------------------------------------------------------- /llamafile/lockable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/lockable.h -------------------------------------------------------------------------------- /llamafile/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/log.c -------------------------------------------------------------------------------- /llamafile/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/log.h -------------------------------------------------------------------------------- /llamafile/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/macros.h -------------------------------------------------------------------------------- /llamafile/memlog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/memlog.inc -------------------------------------------------------------------------------- /llamafile/metal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/metal.c -------------------------------------------------------------------------------- /llamafile/micros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/micros.h -------------------------------------------------------------------------------- /llamafile/mozilla-logo-bw-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/mozilla-logo-bw-rgb.png -------------------------------------------------------------------------------- /llamafile/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/naive.h -------------------------------------------------------------------------------- /llamafile/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/net.h -------------------------------------------------------------------------------- /llamafile/numba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/numba.h -------------------------------------------------------------------------------- /llamafile/parse_cidr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/parse_cidr.cpp -------------------------------------------------------------------------------- /llamafile/parse_cidr_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/parse_cidr_test.cpp -------------------------------------------------------------------------------- /llamafile/parse_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/parse_ip.cpp -------------------------------------------------------------------------------- /llamafile/pick_a_warp_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/pick_a_warp_kernel.c -------------------------------------------------------------------------------- /llamafile/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/pool.cpp -------------------------------------------------------------------------------- /llamafile/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/pool.h -------------------------------------------------------------------------------- /llamafile/pool_cancel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/pool_cancel_test.cpp -------------------------------------------------------------------------------- /llamafile/pool_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/pool_test.cpp -------------------------------------------------------------------------------- /llamafile/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/release.sh -------------------------------------------------------------------------------- /llamafile/rocm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/rocm.bat -------------------------------------------------------------------------------- /llamafile/rocm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/rocm.sh -------------------------------------------------------------------------------- /llamafile/rollup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/rollup.py -------------------------------------------------------------------------------- /llamafile/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/schema.sql -------------------------------------------------------------------------------- /llamafile/schlep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/schlep.c -------------------------------------------------------------------------------- /llamafile/server/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/.clang-format -------------------------------------------------------------------------------- /llamafile/server/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/BUILD.mk -------------------------------------------------------------------------------- /llamafile/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/README.md -------------------------------------------------------------------------------- /llamafile/server/atob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/atob.cpp -------------------------------------------------------------------------------- /llamafile/server/atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/atom.cpp -------------------------------------------------------------------------------- /llamafile/server/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/atom.h -------------------------------------------------------------------------------- /llamafile/server/atom_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/atom_test.cpp -------------------------------------------------------------------------------- /llamafile/server/atomize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/atomize.cpp -------------------------------------------------------------------------------- /llamafile/server/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/buffer.cpp -------------------------------------------------------------------------------- /llamafile/server/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/buffer.h -------------------------------------------------------------------------------- /llamafile/server/cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/cleanup.cpp -------------------------------------------------------------------------------- /llamafile/server/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/cleanup.h -------------------------------------------------------------------------------- /llamafile/server/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/client.cpp -------------------------------------------------------------------------------- /llamafile/server/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/client.h -------------------------------------------------------------------------------- /llamafile/server/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/db.cpp -------------------------------------------------------------------------------- /llamafile/server/doc/embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/embedding.md -------------------------------------------------------------------------------- /llamafile/server/doc/endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/endpoints.md -------------------------------------------------------------------------------- /llamafile/server/doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/getting_started.md -------------------------------------------------------------------------------- /llamafile/server/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/index.md -------------------------------------------------------------------------------- /llamafile/server/doc/technical_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/technical_details.md -------------------------------------------------------------------------------- /llamafile/server/doc/tokenize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/tokenize.md -------------------------------------------------------------------------------- /llamafile/server/doc/v1_chat_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/v1_chat_completions.md -------------------------------------------------------------------------------- /llamafile/server/doc/v1_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/doc/v1_completions.md -------------------------------------------------------------------------------- /llamafile/server/embedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/embedding.cpp -------------------------------------------------------------------------------- /llamafile/server/fastjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/fastjson.cpp -------------------------------------------------------------------------------- /llamafile/server/fastjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/fastjson.h -------------------------------------------------------------------------------- /llamafile/server/fastjson_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/fastjson_test.cpp -------------------------------------------------------------------------------- /llamafile/server/flagz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/flagz.cpp -------------------------------------------------------------------------------- /llamafile/server/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/image.cpp -------------------------------------------------------------------------------- /llamafile/server/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/image.h -------------------------------------------------------------------------------- /llamafile/server/image_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/image_test.cpp -------------------------------------------------------------------------------- /llamafile/server/listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/listen.cpp -------------------------------------------------------------------------------- /llamafile/server/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/log.cpp -------------------------------------------------------------------------------- /llamafile/server/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/log.h -------------------------------------------------------------------------------- /llamafile/server/main.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/main.1 -------------------------------------------------------------------------------- /llamafile/server/main.1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/main.1.asc -------------------------------------------------------------------------------- /llamafile/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/main.cpp -------------------------------------------------------------------------------- /llamafile/server/or_empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/or_empty.cpp -------------------------------------------------------------------------------- /llamafile/server/prog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/prog.cpp -------------------------------------------------------------------------------- /llamafile/server/prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/prog.h -------------------------------------------------------------------------------- /llamafile/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/server.cpp -------------------------------------------------------------------------------- /llamafile/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/server.h -------------------------------------------------------------------------------- /llamafile/server/signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/signals.cpp -------------------------------------------------------------------------------- /llamafile/server/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/signals.h -------------------------------------------------------------------------------- /llamafile/server/slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slot.cpp -------------------------------------------------------------------------------- /llamafile/server/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slot.h -------------------------------------------------------------------------------- /llamafile/server/slot_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slot_entry.cpp -------------------------------------------------------------------------------- /llamafile/server/slot_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slot_entry.h -------------------------------------------------------------------------------- /llamafile/server/slots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slots.cpp -------------------------------------------------------------------------------- /llamafile/server/slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slots.h -------------------------------------------------------------------------------- /llamafile/server/slotz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/slotz.cpp -------------------------------------------------------------------------------- /llamafile/server/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/time.cpp -------------------------------------------------------------------------------- /llamafile/server/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/time.h -------------------------------------------------------------------------------- /llamafile/server/tokenbucket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/tokenbucket.cpp -------------------------------------------------------------------------------- /llamafile/server/tokenbucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/tokenbucket.h -------------------------------------------------------------------------------- /llamafile/server/tokenbucket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/tokenbucket_test.cpp -------------------------------------------------------------------------------- /llamafile/server/tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/tokenize.cpp -------------------------------------------------------------------------------- /llamafile/server/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/utf.cpp -------------------------------------------------------------------------------- /llamafile/server/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/utils.h -------------------------------------------------------------------------------- /llamafile/server/v1_chat_completions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/v1_chat_completions.cpp -------------------------------------------------------------------------------- /llamafile/server/v1_completions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/v1_completions.cpp -------------------------------------------------------------------------------- /llamafile/server/v1_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/v1_models.cpp -------------------------------------------------------------------------------- /llamafile/server/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/worker.cpp -------------------------------------------------------------------------------- /llamafile/server/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/worker.h -------------------------------------------------------------------------------- /llamafile/server/writev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/writev.cpp -------------------------------------------------------------------------------- /llamafile/server/www/chatbot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/chatbot.css -------------------------------------------------------------------------------- /llamafile/server/www/chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/chatbot.js -------------------------------------------------------------------------------- /llamafile/server/www/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/chatbot.png -------------------------------------------------------------------------------- /llamafile/server/www/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/clipboard.js -------------------------------------------------------------------------------- /llamafile/server/www/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/close.svg -------------------------------------------------------------------------------- /llamafile/server/www/ctype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/ctype.js -------------------------------------------------------------------------------- /llamafile/server/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/favicon.ico -------------------------------------------------------------------------------- /llamafile/server/www/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/gear.svg -------------------------------------------------------------------------------- /llamafile/server/www/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight.css -------------------------------------------------------------------------------- /llamafile/server/www/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_ada.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_asm.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_basic.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_c.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_cmake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_cmake.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_cobol.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_cpp.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_csharp.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_css.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_cxx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_cxx.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_d.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_forth.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_fortran.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_go.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_haskell.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_html.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_java.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_js.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_julia.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_kotlin.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_ld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_ld.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_lisp.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_lua.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_m4.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_make.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_markdown.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_matlab.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_ocaml.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_pascal.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_perl.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_php.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_python.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_r.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_ruby.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_rust.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_scala.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_shell.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_sql.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_swift.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_tcl.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_tex.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_txt.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_typescript.js -------------------------------------------------------------------------------- /llamafile/server/www/highlight_zig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/highlight_zig.js -------------------------------------------------------------------------------- /llamafile/server/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/index.html -------------------------------------------------------------------------------- /llamafile/server/www/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/menu.svg -------------------------------------------------------------------------------- /llamafile/server/www/ooc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/ooc.svg -------------------------------------------------------------------------------- /llamafile/server/www/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/redo.svg -------------------------------------------------------------------------------- /llamafile/server/www/render_markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/render_markdown.js -------------------------------------------------------------------------------- /llamafile/server/www/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/send.svg -------------------------------------------------------------------------------- /llamafile/server/www/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/stop.svg -------------------------------------------------------------------------------- /llamafile/server/www/test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/test/test.css -------------------------------------------------------------------------------- /llamafile/server/www/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/test/test.html -------------------------------------------------------------------------------- /llamafile/server/www/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/test/test.js -------------------------------------------------------------------------------- /llamafile/server/www/test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/test/test.md -------------------------------------------------------------------------------- /llamafile/server/www/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/server/www/upload.svg -------------------------------------------------------------------------------- /llamafile/sgemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sgemm.cpp -------------------------------------------------------------------------------- /llamafile/sgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sgemm.h -------------------------------------------------------------------------------- /llamafile/sgemm_matmul_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sgemm_matmul_test.cpp -------------------------------------------------------------------------------- /llamafile/sgemm_sss_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sgemm_sss_test.cpp -------------------------------------------------------------------------------- /llamafile/sgemm_vecdot_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sgemm_vecdot_test.cpp -------------------------------------------------------------------------------- /llamafile/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/simple.cpp -------------------------------------------------------------------------------- /llamafile/slicehf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/slicehf.c -------------------------------------------------------------------------------- /llamafile/slurp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/slurp.cpp -------------------------------------------------------------------------------- /llamafile/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/socket.cpp -------------------------------------------------------------------------------- /llamafile/sslroots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/sslroots.cpp -------------------------------------------------------------------------------- /llamafile/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/string.cpp -------------------------------------------------------------------------------- /llamafile/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/string.h -------------------------------------------------------------------------------- /llamafile/tanhf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tanhf.h -------------------------------------------------------------------------------- /llamafile/tester.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tester.cu -------------------------------------------------------------------------------- /llamafile/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tester.h -------------------------------------------------------------------------------- /llamafile/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/thread.h -------------------------------------------------------------------------------- /llamafile/thread_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/thread_test.cpp -------------------------------------------------------------------------------- /llamafile/threadlocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/threadlocal.h -------------------------------------------------------------------------------- /llamafile/tinyblas.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas.cu -------------------------------------------------------------------------------- /llamafile/tinyblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas.h -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu.h -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul.inc -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avx512f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avx512f.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_avxvnni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_avxvnni.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_fma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_fma.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_arm80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_arm80.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_mixmul_arm82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_mixmul_arm82.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm.inc -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx2.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avx512f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avx512f.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_avxvnni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_avxvnni.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_fma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_fma.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_amd_zen4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_amd_zen4.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_arm80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_arm80.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_sgemm_arm82.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_sgemm_arm82.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_cpu_unsupported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_cpu_unsupported.cpp -------------------------------------------------------------------------------- /llamafile/tinyblas_mnpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_mnpack.py -------------------------------------------------------------------------------- /llamafile/tinyblas_test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tinyblas_test.cu -------------------------------------------------------------------------------- /llamafile/tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/tokenize.cpp -------------------------------------------------------------------------------- /llamafile/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/trace.c -------------------------------------------------------------------------------- /llamafile/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/trace.h -------------------------------------------------------------------------------- /llamafile/trust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/trust.cpp -------------------------------------------------------------------------------- /llamafile/trust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/trust.h -------------------------------------------------------------------------------- /llamafile/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/utils.h -------------------------------------------------------------------------------- /llamafile/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/vector.h -------------------------------------------------------------------------------- /llamafile/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/version.h -------------------------------------------------------------------------------- /llamafile/vmathf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/vmathf_test.cpp -------------------------------------------------------------------------------- /llamafile/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/x.c -------------------------------------------------------------------------------- /llamafile/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/x.h -------------------------------------------------------------------------------- /llamafile/xterm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/xterm.cpp -------------------------------------------------------------------------------- /llamafile/xterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/xterm.h -------------------------------------------------------------------------------- /llamafile/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zip.c -------------------------------------------------------------------------------- /llamafile/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zip.h -------------------------------------------------------------------------------- /llamafile/zipalign.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zipalign.1 -------------------------------------------------------------------------------- /llamafile/zipalign.1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zipalign.1.asc -------------------------------------------------------------------------------- /llamafile/zipalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zipalign.c -------------------------------------------------------------------------------- /llamafile/zipcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/llamafile/zipcheck.c -------------------------------------------------------------------------------- /localscore/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/BUILD.mk -------------------------------------------------------------------------------- /localscore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/README.md -------------------------------------------------------------------------------- /localscore/apple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/apple.cpp -------------------------------------------------------------------------------- /localscore/apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/apple.h -------------------------------------------------------------------------------- /localscore/ascii_digits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/ascii_digits.h -------------------------------------------------------------------------------- /localscore/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/benchmark.cpp -------------------------------------------------------------------------------- /localscore/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/benchmark.h -------------------------------------------------------------------------------- /localscore/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/cmd.cpp -------------------------------------------------------------------------------- /localscore/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/cmd.h -------------------------------------------------------------------------------- /localscore/cuda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/cuda.bat -------------------------------------------------------------------------------- /localscore/cuda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/cuda.sh -------------------------------------------------------------------------------- /localscore/doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/doc/troubleshooting.md -------------------------------------------------------------------------------- /localscore/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/http.cpp -------------------------------------------------------------------------------- /localscore/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/http.h -------------------------------------------------------------------------------- /localscore/localscore-example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/localscore-example.jpeg -------------------------------------------------------------------------------- /localscore/localscore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/localscore.cpp -------------------------------------------------------------------------------- /localscore/localscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/localscore.h -------------------------------------------------------------------------------- /localscore/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/main.cpp -------------------------------------------------------------------------------- /localscore/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/net.h -------------------------------------------------------------------------------- /localscore/nvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/nvml.cpp -------------------------------------------------------------------------------- /localscore/nvml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/nvml.h -------------------------------------------------------------------------------- /localscore/powersampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/powersampler.cpp -------------------------------------------------------------------------------- /localscore/powersampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/powersampler.h -------------------------------------------------------------------------------- /localscore/printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/printer.cpp -------------------------------------------------------------------------------- /localscore/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/printer.h -------------------------------------------------------------------------------- /localscore/rsmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/rsmi.cpp -------------------------------------------------------------------------------- /localscore/rsmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/rsmi.h -------------------------------------------------------------------------------- /localscore/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/system.cpp -------------------------------------------------------------------------------- /localscore/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/system.h -------------------------------------------------------------------------------- /localscore/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/localscore/utils.h -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /models/TinyLLama-v0.1-5M-F16.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/models/TinyLLama-v0.1-5M-F16.gguf -------------------------------------------------------------------------------- /stable-diffusion.cpp.patches/apply-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/stable-diffusion.cpp.patches/apply-patches.sh -------------------------------------------------------------------------------- /stable-diffusion.cpp.patches/llamafile-files/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/stable-diffusion.cpp.patches/llamafile-files/zip.c -------------------------------------------------------------------------------- /stable-diffusion.cpp.patches/llamafile-files/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/stable-diffusion.cpp.patches/llamafile-files/zip.h -------------------------------------------------------------------------------- /stable-diffusion.cpp.patches/patches/save.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/stable-diffusion.cpp.patches/patches/save.patch -------------------------------------------------------------------------------- /third_party/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/BUILD.mk -------------------------------------------------------------------------------- /third_party/double-conversion/.gitignore: -------------------------------------------------------------------------------- 1 | *.os 2 | -------------------------------------------------------------------------------- /third_party/double-conversion/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/AUTHORS -------------------------------------------------------------------------------- /third_party/double-conversion/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/BUILD.mk -------------------------------------------------------------------------------- /third_party/double-conversion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/LICENSE -------------------------------------------------------------------------------- /third_party/double-conversion/README.llamafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/README.llamafile -------------------------------------------------------------------------------- /third_party/double-conversion/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/SConscript -------------------------------------------------------------------------------- /third_party/double-conversion/bignum-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/bignum-dtoa.cc -------------------------------------------------------------------------------- /third_party/double-conversion/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/bignum-dtoa.h -------------------------------------------------------------------------------- /third_party/double-conversion/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/bignum.cc -------------------------------------------------------------------------------- /third_party/double-conversion/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/bignum.h -------------------------------------------------------------------------------- /third_party/double-conversion/cached-powers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/cached-powers.cc -------------------------------------------------------------------------------- /third_party/double-conversion/cached-powers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/cached-powers.h -------------------------------------------------------------------------------- /third_party/double-conversion/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/diy-fp.h -------------------------------------------------------------------------------- /third_party/double-conversion/double-conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/double-conversion.h -------------------------------------------------------------------------------- /third_party/double-conversion/double-to-string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/double-to-string.cc -------------------------------------------------------------------------------- /third_party/double-conversion/double-to-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/double-to-string.h -------------------------------------------------------------------------------- /third_party/double-conversion/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/fast-dtoa.cc -------------------------------------------------------------------------------- /third_party/double-conversion/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/fast-dtoa.h -------------------------------------------------------------------------------- /third_party/double-conversion/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/fixed-dtoa.cc -------------------------------------------------------------------------------- /third_party/double-conversion/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/fixed-dtoa.h -------------------------------------------------------------------------------- /third_party/double-conversion/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/ieee.h -------------------------------------------------------------------------------- /third_party/double-conversion/string-to-double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/string-to-double.cc -------------------------------------------------------------------------------- /third_party/double-conversion/string-to-double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/string-to-double.h -------------------------------------------------------------------------------- /third_party/double-conversion/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/strtod.cc -------------------------------------------------------------------------------- /third_party/double-conversion/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/strtod.h -------------------------------------------------------------------------------- /third_party/double-conversion/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/double-conversion/utils.h -------------------------------------------------------------------------------- /third_party/mbedtls/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/BUILD.mk -------------------------------------------------------------------------------- /third_party/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/LICENSE -------------------------------------------------------------------------------- /third_party/mbedtls/README.cosmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/README.cosmo -------------------------------------------------------------------------------- /third_party/mbedtls/README.llamafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/README.llamafile -------------------------------------------------------------------------------- /third_party/mbedtls/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aes.c -------------------------------------------------------------------------------- /third_party/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aes.h -------------------------------------------------------------------------------- /third_party/mbedtls/aesce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aesce.c -------------------------------------------------------------------------------- /third_party/mbedtls/aesce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aesce.h -------------------------------------------------------------------------------- /third_party/mbedtls/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aesni.c -------------------------------------------------------------------------------- /third_party/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/aesni.h -------------------------------------------------------------------------------- /third_party/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/asn1.h -------------------------------------------------------------------------------- /third_party/mbedtls/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/asn1parse.c -------------------------------------------------------------------------------- /third_party/mbedtls/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/asn1write.c -------------------------------------------------------------------------------- /third_party/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/asn1write.h -------------------------------------------------------------------------------- /third_party/mbedtls/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/base64.c -------------------------------------------------------------------------------- /third_party/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/base64.h -------------------------------------------------------------------------------- /third_party/mbedtls/bigmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bigmul.c -------------------------------------------------------------------------------- /third_party/mbedtls/bigmul4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bigmul4.c -------------------------------------------------------------------------------- /third_party/mbedtls/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bignum.c -------------------------------------------------------------------------------- /third_party/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bignum.h -------------------------------------------------------------------------------- /third_party/mbedtls/bignum_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bignum_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/bigshift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/bigshift.c -------------------------------------------------------------------------------- /third_party/mbedtls/blake2b256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/blake2b256.c -------------------------------------------------------------------------------- /third_party/mbedtls/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ccm.c -------------------------------------------------------------------------------- /third_party/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ccm.h -------------------------------------------------------------------------------- /third_party/mbedtls/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/certs.c -------------------------------------------------------------------------------- /third_party/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/certs.h -------------------------------------------------------------------------------- /third_party/mbedtls/chacha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/chacha20.c -------------------------------------------------------------------------------- /third_party/mbedtls/chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/chacha20.h -------------------------------------------------------------------------------- /third_party/mbedtls/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/chachapoly.c -------------------------------------------------------------------------------- /third_party/mbedtls/chachapoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/chachapoly.h -------------------------------------------------------------------------------- /third_party/mbedtls/check.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/check.inc -------------------------------------------------------------------------------- /third_party/mbedtls/chk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/chk.h -------------------------------------------------------------------------------- /third_party/mbedtls/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/cipher.c -------------------------------------------------------------------------------- /third_party/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/cipher.h -------------------------------------------------------------------------------- /third_party/mbedtls/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/cipher_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/cipher_wrap.c -------------------------------------------------------------------------------- /third_party/mbedtls/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/common.h -------------------------------------------------------------------------------- /third_party/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/config.h -------------------------------------------------------------------------------- /third_party/mbedtls/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ctr_drbg.c -------------------------------------------------------------------------------- /third_party/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /third_party/mbedtls/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/debug.c -------------------------------------------------------------------------------- /third_party/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/debug.h -------------------------------------------------------------------------------- /third_party/mbedtls/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/des.c -------------------------------------------------------------------------------- /third_party/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/des.h -------------------------------------------------------------------------------- /third_party/mbedtls/describecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/describecode.c -------------------------------------------------------------------------------- /third_party/mbedtls/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/dhm.c -------------------------------------------------------------------------------- /third_party/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/dhm.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdh.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdh.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecdh_everest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdh_everest.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecdh_everest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdh_everest.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdsa.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecp256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp256.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecp384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp384.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp_curves.c -------------------------------------------------------------------------------- /third_party/mbedtls/ecp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecp_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/ecpshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ecpshl.c -------------------------------------------------------------------------------- /third_party/mbedtls/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/endian.h -------------------------------------------------------------------------------- /third_party/mbedtls/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/entropy.c -------------------------------------------------------------------------------- /third_party/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/entropy.h -------------------------------------------------------------------------------- /third_party/mbedtls/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/entropy_poll.c -------------------------------------------------------------------------------- /third_party/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /third_party/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/error.c -------------------------------------------------------------------------------- /third_party/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/error.h -------------------------------------------------------------------------------- /third_party/mbedtls/everest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/everest.c -------------------------------------------------------------------------------- /third_party/mbedtls/everest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/everest.h -------------------------------------------------------------------------------- /third_party/mbedtls/fastdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/fastdiv.h -------------------------------------------------------------------------------- /third_party/mbedtls/formatclientciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/formatclientciphers.c -------------------------------------------------------------------------------- /third_party/mbedtls/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/gcm.c -------------------------------------------------------------------------------- /third_party/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/gcm.h -------------------------------------------------------------------------------- /third_party/mbedtls/getalertdescription.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/getalertdescription.c -------------------------------------------------------------------------------- /third_party/mbedtls/getciphersuite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/getciphersuite.c -------------------------------------------------------------------------------- /third_party/mbedtls/getciphersuitename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/getciphersuitename.c -------------------------------------------------------------------------------- /third_party/mbedtls/getsslstatename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/getsslstatename.c -------------------------------------------------------------------------------- /third_party/mbedtls/hkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/hkdf.c -------------------------------------------------------------------------------- /third_party/mbedtls/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/hkdf.h -------------------------------------------------------------------------------- /third_party/mbedtls/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/hmac_drbg.c -------------------------------------------------------------------------------- /third_party/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /third_party/mbedtls/iana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/iana.h -------------------------------------------------------------------------------- /third_party/mbedtls/isciphersuitegood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/isciphersuitegood.c -------------------------------------------------------------------------------- /third_party/mbedtls/karatsuba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/karatsuba.c -------------------------------------------------------------------------------- /third_party/mbedtls/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/math.h -------------------------------------------------------------------------------- /third_party/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/md.c -------------------------------------------------------------------------------- /third_party/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/md.h -------------------------------------------------------------------------------- /third_party/mbedtls/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/md5.c -------------------------------------------------------------------------------- /third_party/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/md5.h -------------------------------------------------------------------------------- /third_party/mbedtls/md5t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/md5t.c -------------------------------------------------------------------------------- /third_party/mbedtls/mdtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/mdtype.c -------------------------------------------------------------------------------- /third_party/mbedtls/memory_buffer_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/memory_buffer_alloc.c -------------------------------------------------------------------------------- /third_party/mbedtls/memory_buffer_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/memory_buffer_alloc.h -------------------------------------------------------------------------------- /third_party/mbedtls/net_sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/net_sockets.c -------------------------------------------------------------------------------- /third_party/mbedtls/net_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/net_sockets.h -------------------------------------------------------------------------------- /third_party/mbedtls/nist_kw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/nist_kw.c -------------------------------------------------------------------------------- /third_party/mbedtls/nist_kw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/nist_kw.h -------------------------------------------------------------------------------- /third_party/mbedtls/notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/notice.c -------------------------------------------------------------------------------- /third_party/mbedtls/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/oid.c -------------------------------------------------------------------------------- /third_party/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/oid.h -------------------------------------------------------------------------------- /third_party/mbedtls/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/param.c -------------------------------------------------------------------------------- /third_party/mbedtls/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pem.c -------------------------------------------------------------------------------- /third_party/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pem.h -------------------------------------------------------------------------------- /third_party/mbedtls/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pk.c -------------------------------------------------------------------------------- /third_party/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pk.h -------------------------------------------------------------------------------- /third_party/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pk_wrap.c -------------------------------------------------------------------------------- /third_party/mbedtls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pkcs5.c -------------------------------------------------------------------------------- /third_party/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /third_party/mbedtls/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pkparse.c -------------------------------------------------------------------------------- /third_party/mbedtls/pktype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pktype.c -------------------------------------------------------------------------------- /third_party/mbedtls/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/pkwrite.c -------------------------------------------------------------------------------- /third_party/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/platform.c -------------------------------------------------------------------------------- /third_party/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/platform.h -------------------------------------------------------------------------------- /third_party/mbedtls/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/poly1305.c -------------------------------------------------------------------------------- /third_party/mbedtls/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/poly1305.h -------------------------------------------------------------------------------- /third_party/mbedtls/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/profile.h -------------------------------------------------------------------------------- /third_party/mbedtls/rando.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/rando.c -------------------------------------------------------------------------------- /third_party/mbedtls/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/rsa.c -------------------------------------------------------------------------------- /third_party/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/rsa.h -------------------------------------------------------------------------------- /third_party/mbedtls/rsa_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/rsa_internal.c -------------------------------------------------------------------------------- /third_party/mbedtls/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/rsa_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/san.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/san.c -------------------------------------------------------------------------------- /third_party/mbedtls/san.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/san.h -------------------------------------------------------------------------------- /third_party/mbedtls/secp256r1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/secp256r1.c -------------------------------------------------------------------------------- /third_party/mbedtls/secp384r1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/secp384r1.c -------------------------------------------------------------------------------- /third_party/mbedtls/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/select.h -------------------------------------------------------------------------------- /third_party/mbedtls/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha1.c -------------------------------------------------------------------------------- /third_party/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha1.h -------------------------------------------------------------------------------- /third_party/mbedtls/sha1t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha1t.c -------------------------------------------------------------------------------- /third_party/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha256.c -------------------------------------------------------------------------------- /third_party/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha256.h -------------------------------------------------------------------------------- /third_party/mbedtls/sha256t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha256t.c -------------------------------------------------------------------------------- /third_party/mbedtls/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha512.c -------------------------------------------------------------------------------- /third_party/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha512.h -------------------------------------------------------------------------------- /third_party/mbedtls/sha512t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sha512t.c -------------------------------------------------------------------------------- /third_party/mbedtls/shakedescription.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/shakedescription.c -------------------------------------------------------------------------------- /third_party/mbedtls/shiftright-avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/shiftright-avx.c -------------------------------------------------------------------------------- /third_party/mbedtls/shiftright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/shiftright.c -------------------------------------------------------------------------------- /third_party/mbedtls/sigalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sigalg.c -------------------------------------------------------------------------------- /third_party/mbedtls/speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/speed.sh -------------------------------------------------------------------------------- /third_party/mbedtls/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/srtp.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_cache.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_ciphersuites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_ciphersuites.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_ciphersuites.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_cli.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_cookie.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_invasive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_invasive.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_msg.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_srv.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_ticket.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_tls.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_tls13_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_tls13_keys.c -------------------------------------------------------------------------------- /third_party/mbedtls/ssl_tls13_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/ssl_tls13_keys.h -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/amazon.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/amazon.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/certum.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/certum.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/comodo.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/comodo.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/digicert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/digicert.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/geotrust.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/geotrust.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/globalsign.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/globalsign.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/godaddy.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/godaddy.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/google.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/google.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/isrg.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/isrg.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/quovadis.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/quovadis.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/redbean.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/redbean.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/show.sh -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/starfield.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/starfield.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroot/verisign.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroot/verisign.pem -------------------------------------------------------------------------------- /third_party/mbedtls/sslroots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/sslroots.c -------------------------------------------------------------------------------- /third_party/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/version.h -------------------------------------------------------------------------------- /third_party/mbedtls/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509.h -------------------------------------------------------------------------------- /third_party/mbedtls/x509_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_create.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_crl.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /third_party/mbedtls/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_crt.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /third_party/mbedtls/x509_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_csr.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /third_party/mbedtls/x509write_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509write_crt.c -------------------------------------------------------------------------------- /third_party/mbedtls/x509write_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/x509write_csr.c -------------------------------------------------------------------------------- /third_party/mbedtls/zeroize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/mbedtls/zeroize.c -------------------------------------------------------------------------------- /third_party/sqlite/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/BUILD.mk -------------------------------------------------------------------------------- /third_party/sqlite/README.llamafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/README.llamafile -------------------------------------------------------------------------------- /third_party/sqlite/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/shell.c -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/sqlite3.c -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/sqlite3.h -------------------------------------------------------------------------------- /third_party/sqlite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/sqlite/sqlite3ext.h -------------------------------------------------------------------------------- /third_party/stb/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/BUILD.mk -------------------------------------------------------------------------------- /third_party/stb/README.llamafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/README.llamafile -------------------------------------------------------------------------------- /third_party/stb/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_image.c -------------------------------------------------------------------------------- /third_party/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_image.h -------------------------------------------------------------------------------- /third_party/stb/stb_image_resize2.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_RESIZE_IMPLEMENTATION 2 | #include "stb_image_resize2.h" 3 | -------------------------------------------------------------------------------- /third_party/stb/stb_image_resize2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_image_resize2.h -------------------------------------------------------------------------------- /third_party/stb/stb_image_write.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_WRITE_IMPLEMENTATION 2 | #include "stb_image_write.h" 3 | -------------------------------------------------------------------------------- /third_party/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_image_write.h -------------------------------------------------------------------------------- /third_party/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_vorbis.c -------------------------------------------------------------------------------- /third_party/stb/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/third_party/stb/stb_vorbis.h -------------------------------------------------------------------------------- /whisper.cpp.patches/apply-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/apply-patches.sh -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/BUILD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/BUILD.mk -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/README.md -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/color.cpp -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/color.h -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/doc/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/doc/gpu.md -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/doc/index.md -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/doc/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/doc/server.md -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/dr_wav.c: -------------------------------------------------------------------------------- 1 | #define DR_WAV_IMPLEMENTATION 2 | #include "dr_wav.h" 3 | -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/ggml_extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/ggml_extend.hpp -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/jfk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/jfk.wav -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/main.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/main.1 -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/main.1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/main.1.asc -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/mic2raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/mic2raw.cpp -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/mic2txt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/mic2txt.cpp -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/miniaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/miniaudio.c -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/miniaudio.h -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/slurp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/slurp.cpp -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/slurp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/slurp.h -------------------------------------------------------------------------------- /whisper.cpp.patches/llamafile-files/whisper-mel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/llamafile/HEAD/whisper.cpp.patches/llamafile-files/whisper-mel.hpp --------------------------------------------------------------------------------