Skip to content

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed May 22, 2024
1 parent c1b7687 commit aa1cad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elia_chat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class EliaChatModel(BaseModel):
"""A description of the model which may appear inside the Elia UI."""
product: str | None = Field(default=None)
"""For example `ChatGPT`, `Claude`, `Gemini`, etc."""
temperature: int = Field(default=1.0)
temperature: float = Field(default=1.0)
"""The temperature to use. Low temperature means the same prompt is likely
to produce similar results. High temperature means a flatter distribution
when predicting the next token, and so the next token will be more random.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "elia_chat"
version = "1.6.0"
version = "1.6.1"
description = "A powerful terminal user interface for interacting with large language models."
authors = [
{ name = "Darren Burns", email = "darrenb900@gmail.com" }
Expand Down

0 comments on commit aa1cad0

Please sign in to comment.