Skip to content

Commit 2be156c

Browse files
committed
Bump version to 3.0.28
1 parent 248f886 commit 2be156c

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

llms/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
HAS_PIL = False
5858

5959
_ROOT = None
60-
VERSION = "3.0.27"
60+
VERSION = "3.0.28"
6161
DEBUG = os.getenv("DEBUG") == "1"
6262
MOCK = os.getenv("MOCK") == "1"
6363
MOCK_DIR = os.getenv("MOCK_DIR")

llms/ui/ai.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const headers = { 'Accept': 'application/json' }
66
const prefsKey = 'llms.prefs'
77

88
export const o = {
9-
version: '3.0.27',
9+
version: '3.0.28',
1010
base,
1111
prefsKey,
1212
welcome: 'Welcome to llms.py',

llms/ui/app.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
--color-fuchsia-900: oklch(40.1% 0.17 325.612);
109109
--color-slate-50: oklch(98.4% 0.003 247.858);
110110
--color-slate-200: oklch(92.9% 0.013 255.508);
111+
--color-slate-300: oklch(86.9% 0.022 252.894);
111112
--color-slate-400: oklch(70.4% 0.04 256.788);
112113
--color-slate-500: oklch(55.4% 0.046 257.417);
113114
--color-slate-700: oklch(37.2% 0.044 257.287);
@@ -200,6 +201,7 @@
200201
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
201202
--default-font-family: var(--font-sans);
202203
--default-mono-font-family: var(--font-mono);
204+
--default-ring-color: hsl(var(--ring));
203205
}
204206
}
205207
@layer base {
@@ -2547,6 +2549,9 @@
25472549
.text-sky-600 {
25482550
color: var(--color-sky-600);
25492551
}
2552+
.text-slate-300 {
2553+
color: var(--color-slate-300);
2554+
}
25502555
.text-slate-500 {
25512556
color: var(--color-slate-500);
25522557
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "llms-py"
7-
version = "3.0.27"
7+
version = "3.0.28"
88
description = "A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers"
99
readme = "README.md"
1010
license = "BSD-3-Clause"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="llms-py",
18-
version="3.0.27",
18+
version="3.0.28",
1919
author="ServiceStack",
2020
author_email="team@servicestack.net",
2121
description="A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers",

0 commit comments

Comments
 (0)