Skip to content

Commit 7c8c919

Browse files
committed
Bump version to 3.0.9
1 parent f881249 commit 7c8c919

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

llms/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
except ImportError:
4242
HAS_PIL = False
4343

44-
VERSION = "3.0.8"
44+
VERSION = "3.0.9"
4545
_ROOT = None
4646
DEBUG = os.getenv("DEBUG") == "1"
4747
MOCK = os.getenv("MOCK") == "1"

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.8',
9+
version: '3.0.9',
1010
base,
1111
prefsKey,
1212
welcome: 'Welcome to llms.py',

llms/ui/app.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,9 @@
535535
.mx-2 {
536536
margin-inline: calc(var(--spacing) * 2);
537537
}
538+
.mx-4 {
539+
margin-inline: calc(var(--spacing) * 4);
540+
}
538541
.mx-auto {
539542
margin-inline: auto;
540543
}
@@ -613,6 +616,9 @@
613616
.mr-16 {
614617
margin-right: calc(var(--spacing) * 16);
615618
}
619+
.-mb-4 {
620+
margin-bottom: calc(var(--spacing) * -4);
621+
}
616622
.-mb-px {
617623
margin-bottom: -1px;
618624
}
@@ -965,12 +971,18 @@
965971
.max-w-lg {
966972
max-width: var(--container-lg);
967973
}
974+
.max-w-md {
975+
max-width: var(--container-md);
976+
}
968977
.max-w-none {
969978
max-width: none;
970979
}
971980
.max-w-sm {
972981
max-width: var(--container-sm);
973982
}
983+
.max-w-xl {
984+
max-width: var(--container-xl);
985+
}
974986
.max-w-xs {
975987
max-width: var(--container-xs);
976988
}

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.8"
7+
version = "3.0.9"
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.8",
18+
version="3.0.9",
1919
author="ServiceStack",
2020
author_email="[email protected]",
2121
description="A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers",

0 commit comments

Comments
 (0)