diff --git a/tldr/bun-pm-scan b/tldr/bun-pm-scan new file mode 100644 index 00000000..c79a2bb6 --- /dev/null +++ b/tldr/bun-pm-scan @@ -0,0 +1,14 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# bun pm scan + +> Scan packages for security vulnerabilities using Bun's integrated security scanner. +> This scan also runs automatically during `bun install` after configuring the scanner in `bunfig.toml` and installing `@bun-security-scanner/osv` from npm. +> More information: . + +- Scan dependencies for vulnerabilities: + +`bun pm scan` diff --git a/tldr/koboldcpp b/tldr/koboldcpp new file mode 100644 index 00000000..24be6c11 --- /dev/null +++ b/tldr/koboldcpp @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# koboldcpp + +> An AI text-generation application for GGML and GGUF models. +> More information: . + +- Load one or more model files: + +`koboldcpp {{[-m|--model]}} {{path/to/model_file}}` + +- Set port to listen on (defaults to 5001): + +`koboldcpp --port {{port}}` + +- Set amount of threads to use: + +`koboldcpp {{[-t|--threads]}} {{amount_of_threads}}` + +- Launch web browser when boot is complete: + +`koboldcpp --launch` + +- Start without the GUI launcher: + +`koboldcpp --skiplauncher` diff --git a/tldr/uv-venv b/tldr/uv-venv index 3be0bfef..0576ad0d 100644 --- a/tldr/uv-venv +++ b/tldr/uv-venv @@ -18,7 +18,11 @@ source: https://github.com/tldr-pages/tldr.git - Create using a specific Python version: -`uv venv --python {{3.12}}` +`uv venv {{[-p|--python]}} {{3.12}}` + +- Include seed packages such as `pip` when creating the virtual environment: + +`uv venv --seed` - Create with a custom prompt prefix: