Skip to content

Releases: mostlygeek/llama-swap

v153

17 Aug 16:50
fcc5ad1

Choose a tag to compare

Changelog

v152

16 Aug 04:56
04fc673

Choose a tag to compare

Changelog

  • 04fc673 Improve Activity event handling in the UI (#254)
  • 4662cf7 add 'unconfirmed bug' as default label in bug-report.md

v151

14 Aug 17:33
5dc6b3e

Choose a tag to compare

Changes:

Pre-loading of models with hooks

  • Using hooks.on_startup.preload a set of models can be automatically started on startup.
# hooks: a dictionary of event triggers and actions
# - optional, default: empty dictionary
# - the only supported hook is on_startup
hooks:
  # on_startup: a dictionary of actions to perform on startup
  # - optional, default: empty dictionar
  # - the only supported action is preload
  on_startup:
        # preload: a list of model ids to load on startup
        # - optional, default: empty list
        # - model names must match keys in the models sections
        # - when preloading multiple models at once, define a group
        #   otherwise models will be loaded and swapped out
    preload:
      - "llama"

Prompt Processing Metrics added to Activities page in UI

image

Changelog

  • 5dc6b3e Add barebones but working implementation of model preload (#209, #235)
  • 74c69f3 Add prompt processing metrics (#250)
  • a186318 Update Readme, Add screenshot for Activities page [skip ci]
  • c4e4d5e Update Readme UI Screenshot [skip ci]

v150

08 Aug 20:30
7985e94

Choose a tag to compare

Changelog

v149

07 Aug 04:19
45ea792

Choose a tag to compare

Changelog

  • 45ea792 Fix UI panel not saving position correctly
  • 1bc2802 fix panels not saving sizing state
  • 701476c Update README.md - remove contributor block [skip ci]
  • 5c63e00 return models sorted by id in /v1/models (#222)
  • 8be5073 Fix typo (#223) [skip ci]
  • 6307bd3 Add support for building Linux ARM64 binary in Makefile (#221)

v148

04 Aug 00:51
558a72d

Choose a tag to compare

Changelog

v147

31 Jul 19:02
574fdfa

Choose a tag to compare

Changelog

v146

30 Jul 18:31
5672cb0

Choose a tag to compare

Note

This is exactly the same functionality as v145. This release was created to test the new automation of homebrew-llama-swap.

Changelog

  • 5672cb0 Update github actions for notifying homebrew build (#212)

v145

30 Jul 17:39
0f58316

Choose a tag to compare

Changelog

v144

27 Jul 17:38
fd50932

Choose a tag to compare

Changelog

  • fd50932 Decouple MetricsMiddleware from downstream handlers (#206)