Skip to content

Commit ff95fbe

Browse files
committed
wip
1 parent d2b7129 commit ff95fbe

File tree

3 files changed

+34
-12
lines changed

3 files changed

+34
-12
lines changed

nix/configuration.nix

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -795,19 +795,14 @@ in {
795795
download --model Nomic-Embed-Text
796796
'';
797797
}
798-
// fj.mkFirejailCustom {
799-
pkg = "tabby-download-qwen";
800-
dir = "tabby-download";
801-
net = true;
802-
exe = ''
803-
${import ./tabby.nix}/bin/tabby \
804-
download --model Qwen2.5-Coder-0.5B
805-
'';
806-
}
807798
// fj.mkFirejailCustom {
808799
pkg = "tabby-download-deepseek";
809800
dir = "tabby-download";
810801
net = true;
802+
#
803+
# NOTE : DeepSeekCoder-6.7B is out of memory on 4GB GPU.
804+
# Seems like only models up to 3B size are supported.
805+
#
811806
exe = ''
812807
${import ./tabby.nix}/bin/tabby \
813808
download --model DeepSeekCoder-1.3B

pub/functora/src/test/Functora/RoundSpec.hs

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,26 @@ dpRoundTestData =
149149
(4, 0.0123456789, 0.0123),
150150
(4, 0.00123456789, 0.0012),
151151
(4, 0.000123456789, 0.0001),
152-
(4, 0.0000123456789, 0.0000)
152+
(4, 0.0000123456789, 0.0000),
153+
(5, 123456789.0, 123456789.0),
154+
(5, 1234.56789, 1234.56789),
155+
(5, 123.456789, 123.45679),
156+
(5, 12.3456789, 12.34568),
157+
(5, 1.23456789, 1.23457),
158+
(5, 0.123456789, 0.12346),
159+
(5, 0.0123456789, 0.01235),
160+
(5, 0.00123456789, 0.00123),
161+
(5, 0.000123456789, 0.00012),
162+
(5, 0.0000123456789, 0.00001),
163+
(5, 0.00000123456789, 0.0),
164+
(6, 123456789.0, 123456789.0),
165+
(6, 1234.56789, 1234.56789),
166+
(6, 123.456789, 123.456789),
167+
(6, 12.3456789, 12.345679),
168+
(6, 1.23456789, 1.234568),
169+
(6, 0.123456789, 0.123457),
170+
(6, 0.0123456789, 0.012346),
171+
(6, 0.00123456789, 0.001235)
153172
]
154173

155174
-- | Every element is a tuple (significantDigits, beforeRound, afterRound)
@@ -179,5 +198,13 @@ sdRoundTestData =
179198
(6, 12.3456789, 12.3457),
180199
(6, 1.23456789, 1.23457),
181200
(6, 0.123456789, 0.123457),
182-
(6, 0.0123456789, 0.0123457)
201+
(6, 0.0123456789, 0.0123457),
202+
(6, 0.00123456789, 0.00123457),
203+
(6, 0.000123456789, 0.000123457),
204+
(7, 123456789.0, 123456800.0),
205+
(7, 1234.56789, 1234.568),
206+
(7, 123.456789, 123.4568),
207+
(7, 12.3456789, 12.34568),
208+
(7, 1.23456789, 1.234568),
209+
(7, 0.123456789, 0.1234568)
183210
]

pub/vi/vimrc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,4 +782,4 @@ let g:neoformat_toml_prettier = {
782782

783783
let g:tabby_agent_start_command = ["tabby-agent", "--stdio"]
784784
let g:tabby_inline_completion_trigger = "manual"
785-
let g:tabby_inline_completion_keybinding_accept = '<C-CR>'
785+
let g:tabby_inline_completion_keybinding_accept = '<M-\>'

0 commit comments

Comments
 (0)