llms-py 3.0.0b3__py3-none-any.whl → 3.0.0b5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
llms/ui/App.mjs CHANGED
@@ -49,7 +49,7 @@ const LeftPanel = {
49
49
 
50
50
  const TopBar = {
51
51
  template: `
52
- <div class="flex space-x-2">
52
+ <div class="flex space-x-1">
53
53
  <div v-for="(icon, id) in $ctx.top" :key="id" class="relative flex items-center justify-center">
54
54
  <component :is="icon.component"
55
55
  class="size-7 p-1 cursor-pointer text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 block"
@@ -60,7 +60,7 @@ const TopBar = {
60
60
  <div v-if="tooltip === icon.id && !icon.isActive({ ...$layout })"
61
61
  class="absolute top-full mt-2 px-2 py-1 text-xs text-white bg-gray-900 dark:bg-gray-800 rounded shadow-md z-50 whitespace-nowrap pointer-events-none"
62
62
  :class="last2.includes(id) ? 'right-0' : 'left-1/2 -translate-x-1/2'">
63
- {{icon.name}}
63
+ {{icon.title ?? icon.name}}
64
64
  </div>
65
65
  </div>
66
66
  </div>
@@ -178,7 +178,7 @@ export default {
178
178
  <TopBar />
179
179
  </div>
180
180
  <TopPanel class="shrink-0" />
181
- <div class="flex-1 overflow-hidden min-h-0 flex flex-col">
181
+ <div class="flex-1 overflow-y-auto min-h-0 flex flex-col">
182
182
  <RouterView class="h-full" />
183
183
  </div>
184
184
  </div>
llms/ui/ai.mjs CHANGED
@@ -5,7 +5,7 @@ const headers = { 'Accept': 'application/json' }
5
5
  const prefsKey = 'llms.prefs'
6
6
 
7
7
  export const o = {
8
- version: '3.0.0b3',
8
+ version: '3.0.0b5',
9
9
  base,
10
10
  prefsKey,
11
11
  welcome: 'Welcome to llms.py',