sa-assistant 0.2.1__py3-none-any.whl → 0.2.3__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.
- {sa_assistant-0.2.1.dist-info → sa_assistant-0.2.3.dist-info}/METADATA +1 -1
- {sa_assistant-0.2.1.dist-info → sa_assistant-0.2.3.dist-info}/RECORD +7 -7
- tui/app.py +1 -1
- tui/styles.tcss +2 -3
- {sa_assistant-0.2.1.dist-info → sa_assistant-0.2.3.dist-info}/WHEEL +0 -0
- {sa_assistant-0.2.1.dist-info → sa_assistant-0.2.3.dist-info}/entry_points.txt +0 -0
- {sa_assistant-0.2.1.dist-info → sa_assistant-0.2.3.dist-info}/top_level.txt +0 -0
|
@@ -19,10 +19,10 @@ model/load.py,sha256=HTD4RCqoyTwASGBC3AaMEhFVrXwu3bN_URcxLbNSzVk,3036
|
|
|
19
19
|
prompts/__init__.py,sha256=gwn1ncE7d-zuoe1pRI5uwElTQQvO8cJgwZqQEJ6oPYs,1518
|
|
20
20
|
prompts/system_prompts.py,sha256=DynDO1Kjwv_fZUm1nGvSTFGH-MEmS5J9w5U01Csn368,16241
|
|
21
21
|
tui/__init__.py,sha256=AhmFoE3tpm8UY9zYeHnlFRgYh7EDREZ7-W8Ke1RozkI,147
|
|
22
|
-
tui/app.py,sha256=
|
|
23
|
-
tui/styles.tcss,sha256=
|
|
24
|
-
sa_assistant-0.2.
|
|
25
|
-
sa_assistant-0.2.
|
|
26
|
-
sa_assistant-0.2.
|
|
27
|
-
sa_assistant-0.2.
|
|
28
|
-
sa_assistant-0.2.
|
|
22
|
+
tui/app.py,sha256=q4yll7stN5dh6A5QejxZg6X7nZbxb2an77jXDmUkMV8,12433
|
|
23
|
+
tui/styles.tcss,sha256=Xz8PVyi-yHPxyXO6dppQ9_wOZZIW2KAi2glletTJsdU,2769
|
|
24
|
+
sa_assistant-0.2.3.dist-info/METADATA,sha256=smWcUjScPo-ynUYfstP-rHMrrJqHqhu7aO3V_6EyqAc,3065
|
|
25
|
+
sa_assistant-0.2.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
26
|
+
sa_assistant-0.2.3.dist-info/entry_points.txt,sha256=TeU6i2gSZtrDvfygfvLvplx5Cb3-Z5eqdMwdzG9_eM0,78
|
|
27
|
+
sa_assistant-0.2.3.dist-info/top_level.txt,sha256=g9-TL1R8z-SyVwHtV25DDxAxOiWCgU1ql21VYgzvERc,52
|
|
28
|
+
sa_assistant-0.2.3.dist-info/RECORD,,
|
tui/app.py
CHANGED
|
@@ -26,7 +26,7 @@ from agentskills import discover_skills, generate_skills_prompt, create_skill_to
|
|
|
26
26
|
|
|
27
27
|
CSS_PATH = Path(__file__).parent / "styles.tcss"
|
|
28
28
|
SKILLS_DIR = Path(__file__).parent.parent / "skills"
|
|
29
|
-
VERSION = "0.2.
|
|
29
|
+
VERSION = "0.2.3"
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class SessionHeader(Static):
|
tui/styles.tcss
CHANGED
|
@@ -83,7 +83,6 @@ MessagePanel {
|
|
|
83
83
|
|
|
84
84
|
.collapsible-title:hover {
|
|
85
85
|
background: $primary-darken-2;
|
|
86
|
-
cursor: pointer;
|
|
87
86
|
}
|
|
88
87
|
|
|
89
88
|
/* Panel Content */
|
|
@@ -152,8 +151,8 @@ RichLog {
|
|
|
152
151
|
}
|
|
153
152
|
|
|
154
153
|
/* ===== Scrollbar ===== */
|
|
155
|
-
ChatContainer
|
|
156
|
-
|
|
154
|
+
ChatContainer {
|
|
155
|
+
scrollbar-size: 1 1;
|
|
157
156
|
}
|
|
158
157
|
|
|
159
158
|
/* ===== Dark Mode Adjustments ===== */
|
|
File without changes
|
|
File without changes
|
|
File without changes
|