Skip to content

Releases: pepperoni21/ollama-rs

v0.1.4

11 Dec 18:46
Compare
Choose a tag to compare

v0.1.3

06 Dec 19:51
Compare
Choose a tag to compare
  • Added rustls support through the rustls feature

  • create_model and create_model_stream methods now take a CreateModelRequest as the parameter, allowing to create a model by passing the content of the Modelfile as parameter.

    For example, this:

    ollama.create_model("model".into(), "/tmp/Modelfile.example".into())

    becomes:

    ollama.create_model(CreateModelRequest::path("model".into(), "/tmp/Modelfile.example".into()))

v0.1.2

21 Nov 21:02
Compare
Choose a tag to compare
  • Fixed GenerateEmbeddingsResponse struct by making the embeddings field accessible

v0.1.1

11 Nov 20:13
Compare
Choose a tag to compare
  • Highly improved documentation
  • Model becomes LocalModel

v0.1.0

11 Nov 17:01
7cd1199
Compare
Choose a tag to compare
  • Complete generation (with streaming)
  • List local models
  • Show model information
  • Create/copy/delete/delete models
  • Embeddings generation
  • Chatbot example