Skip to content

Commit

Permalink
upd version to v1.4.0 (#632)
Browse files Browse the repository at this point in the history
* version = "1.4.0"

* minor visual improvements
  • Loading branch information
pascal-pfeiffer committed Mar 11, 2024
1 parent d47ee8f commit 7ff0d99
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion llm_studio/app_utils/config.py
Expand Up @@ -20,7 +20,7 @@ def get_size(x):
return 2**31


version = "1.4.0-dev"
version = "1.4.0"

try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
Expand Down
12 changes: 6 additions & 6 deletions llm_studio/app_utils/sections/settings.py
Expand Up @@ -22,8 +22,8 @@ async def settings(q: Q) -> None:
type="info",
text="Setting changes are directly applied for the \
current session and can be made persistent by using the \
'Save settings persistently' button below. To reload \
the persistently saved settings, use the 'Load settings' button.",
***Save settings persistently*** button below. To reload \
the persistently saved settings, use the ***Load settings*** button.",
),
ui.separator("Credential Storage"),
ui.inline(
Expand All @@ -41,16 +41,16 @@ async def settings(q: Q) -> None:
ui.message_bar(
type="info",
text="""Method used to save credentials (passwords) \
for 'Save settings persistently'. \
for ***Save settings persistently***. \
The recommended approach for saving credentials (passwords) is to \
use either Keyring or to avoid permanent storage \
(requiring re-entry upon app restart). \
Keyring will be disabled if it is not set up on the host machine. \
Only resort to local .env if your machine's \
accessibility is restricted to you.\n\
When you select 'Save settings persistently', \
When you select ***Save settings persistently***, \
credentials will be removed from all non-selected methods. \
'Restore Default Settings' will clear credentials from all methods.
***Restore Default Settings*** will clear credentials from all methods.
""",
),
ui.separator("Appearance"),
Expand Down Expand Up @@ -463,7 +463,7 @@ async def settings(q: Q) -> None:
ui.separator("Default Chat Settings"),
ui.inline(
items=[
ui.label("Gpu used for Chat", width=label_width),
ui.label("GPU used for Chat", width=label_width),
ui.spinbox(
name="gpu_used_for_chat",
label=None,
Expand Down

0 comments on commit 7ff0d99

Please sign in to comment.