Skip to content

v0.1.11

Choose a tag to compare

@github-actions github-actions released this 11 Aug 10:47
· 17 commits to main since this release
f9c8c3c

Install

pipx install sensei-gateway              # any platform, needs Python 3.11+
brew install senseiissei/tap/sensei      # macOS, Linux
winget install SenseiIssei.Sensei        # Windows
scoop install sensei                     # Windows, portable

Or take a single file that needs no Python at all:

Platform File
Windows 10/11 x64 sensei-windows-x64.exe (or .zip)
macOS (Apple silicon) sensei-macos-arm64.dmg (or .tar.gz)
macOS (Intel) sensei-macos-x86_64.dmg (or .tar.gz)
Linux x86_64 sensei-linux-x86_64.AppImage, .deb, .rpm, .tar.gz
Docker ghcr.io/senseiissei/sensei-backend:latest
VS Code sensei.vsix

Then:

sensei up            # start the server, open the web UI
sensei setup-tools   # point the AI tools on this machine at it

These builds are not code-signed

Sensei has no Apple Developer account or Windows code-signing
certificate yet, so:

  • macOS shows "cannot be opened because the developer cannot be
    verified"
    . Right-click the app and choose Open, or run
    xattr -d com.apple.quarantine /path/to/sensei.
  • Windows shows a SmartScreen warning. Click More info ->
    Run anyway
    .

Verify what you downloaded instead of trusting the warning dialog:

sha256sum -c SHA256SUMS --ignore-missing

Every artifact is also signed with Sigstore. Verify one with:

pip install sigstore
sigstore verify identity \
  --cert-identity-regexp 'https://github.com/SenseiIssei/Sensei/.*' \
  --cert-oidc-issuer https://token.actions.githubusercontent.com \
  sensei-linux-x86_64.AppImage

What's Changed

Full Changelog: v0.1.10...v0.1.11