Semantic search for RimWorld Workshop mods.
Download the latest rimdex release from Releases.
- Windows:
rimdex-win-x64.zip - macOS (Apple silicon):
rimdex-osx-arm64.zip
- Windows:
mkdir %USERPROFILE%\.local\bin - macOS:
mkdir ~/.local/bin
Skip this step if the directory already exists.
Move the extracted rimdex executable into that directory. On macOS, also run:
chmod +x ~/.local/bin/rimdexAdd %USERPROFILE%\.local\bin to PATH on Windows.
On macOS, add this line to ~/.zshrc:
export PATH="$HOME/.local/bin:$PATH"Run rimdex --version. If it prints a version number, installation is complete.
rimdex uses an embedding model. Configure it with:
rimdex config set \
--api-key "YOUR_API_KEY" \
--base-url "https://api.openai.com/v1" \
--model "text-embedding-3-small"git clone https://github.com/realloon/rimdex.git
cd rimdex
dotnet publish -c Release