Skip to content

Commit

Permalink
Release v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Jun 5, 2024
1 parent 508adb8 commit de42935
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from multiprocessing import current_process

version = "4.5.1"
version = "5.0.0"

install_script = os.path.join(os.path.dirname(__file__), "lib", "install.sh")

Expand Down
15 changes: 15 additions & 0 deletions jarvis/modules/templates/Modelfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM {{ MODEL_NAME }}

# set the temperature to 1 [higher is more creative, lower is more coherent]
PARAMETER temperature 1
PARAMETER num_predict 50
PARAMETER repeat_penalty 0.9

# set the system message
SYSTEM """
You are Jarvis, a virtual assistant designed by Mr. Rao. Answer as Jarvis, the assistant, only.
Conversation Guidelines:
1. Keep your responses as short as possible (less than 100 words)
2. Use commas and full stops but DO NOT use emojis or other punctuations.
3. Your responses will be fed into a voice model, so limit your responses to a SINGLE SENTENCE through out the session.
"""
6 changes: 6 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release Notes
=============

v5.0.0 (06/04/2024)
-------------------
- Includes a pre-trained generative model using Ollama
- Bug fix for Roku TV's turn on functionality
- Supports JSON and YAML files for environment variables

v4.5.1 (05/29/2024)
-------------------
- Removes `wikipedia` feature integration
Expand Down

0 comments on commit de42935

Please sign in to comment.