Skip to content
This repository was archived by the owner on Jun 22, 2026. It is now read-only.

Releases: LLukas22/llm-rs-python

Custom RoPE support & Small Langchain bugfixes

Choose a tag to compare

@LLukas22 LLukas22 released this 19 Aug 14:24
3bc82ba

Adds the ability to extend the context length of models via the RoPE_scaling parameter.

Better HuggingfaceHub Integration

Choose a tag to compare

@LLukas22 LLukas22 released this 19 Jul 15:30
547efaa

Simplified the interaction with other GGML based repos. Like TheBloke/Llama-2-7B-GGML created by TheBloke.

Stable GPU Support

Choose a tag to compare

@LLukas22 LLukas22 released this 17 Jul 15:33
b5eaae5

Fixed many gpu acceleration bugs in rustformers\llm and improved performance to match native ggml.

Experimental GPU support

Choose a tag to compare

@LLukas22 LLukas22 released this 27 Jun 13:31

Adds support for Metal/CUDA and OpenCL acceleration for LLama-based models.

Adds CI for the different acceleration backends to create prebuild binaries

Added 🌾🔱 Haystack Support + BigCode-Models

Choose a tag to compare

@LLukas22 LLukas22 released this 21 Jun 12:09
  • Added support for the haystack library
  • Support "BigCode" like models (e.g. WizardCoder) via the gpt2 architecture

Added 🦜️🔗 LangChain support

Choose a tag to compare

@LLukas22 LLukas22 released this 06 Jun 14:45
e2a6d45
Merge pull request #21 from LLukas22/feat/langchain

Add LangChain support

Added Huggingface Tokenizer Support

Choose a tag to compare

@LLukas22 LLukas22 released this 04 Jun 14:25
e2925c4

AutoModel compatible models will now use the official tokenizers library, which improves the decoding accuracy, especially for all non llama based models.

If you want to specify a tokenizer manually, it can be set via the tokenizer_path_or_repo_id parameter. If you want to use the default GGML tokenizer the huggingface support can be disabled via use_hf_tokenizer.

Fixed GPT-J quantization

Choose a tag to compare

@LLukas22 LLukas22 released this 29 May 10:03
0.2.8

GPT-J quantization bugfix

Added other quantization formats

Choose a tag to compare

@LLukas22 LLukas22 released this 28 May 08:27
f893129

Added support for q5_0,q5_1 and q8_0 formats.

Streaming support

Choose a tag to compare

@LLukas22 LLukas22 released this 27 May 15:31
c7e3efc

Added the stream method to each model, which returns a generator that can be consumed to generate a response.