miii-cli 0.2.9 → 0.3.1
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.
- package/README.md +66 -39
- package/dist/__tests__/integration.test.js +50 -0
- package/dist/init.js +4 -3
- package/dist/llm/stream.js +78 -10
- package/dist/memory/extractor.js +44 -0
- package/dist/memory/store.js +41 -0
- package/dist/tavily/client.js +64 -0
- package/dist/tools/index.js +5 -1
- package/dist/tui/InputBar.js +73 -5
- package/dist/tui/components/InputArea.js +51 -13
- package/dist/tui/deepThink.js +94 -0
- package/dist/tui/git-context.js +59 -0
- package/dist/tui/hooks/useModelPicker.js +63 -0
- package/dist/tui/hooks/useRunLoop.js +173 -0
- package/dist/tui/hooks/useSession.js +93 -0
- package/dist/tui/printer.js +16 -8
- package/dist/tui/thinking.js +53 -0
- package/package.json +1 -1
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export const THINKING_PHRASES = [
|
|
2
|
+
'oh wow, a question. let me pretend to care…',
|
|
3
|
+
'consulting the void…',
|
|
4
|
+
'making something up, just a sec…',
|
|
5
|
+
'definitely not hallucinating right now…',
|
|
6
|
+
'running 47 mental tabs…',
|
|
7
|
+
'staring into the abyss (it blinked)…',
|
|
8
|
+
'calculating your fate, no pressure…',
|
|
9
|
+
'doing the thinking you pay me for…',
|
|
10
|
+
'processing your questionable life choices…',
|
|
11
|
+
'summoning coherent thoughts, rarely works…',
|
|
12
|
+
'asking my imaginary friend for help…',
|
|
13
|
+
'pretending this is a hard problem…',
|
|
14
|
+
'yes, yes, very interesting. anyway…',
|
|
15
|
+
'googling it (not really, I can\'t)…',
|
|
16
|
+
'simulating intelligence… please wait…',
|
|
17
|
+
'having a brief existential crisis…',
|
|
18
|
+
'cross-referencing vibes…',
|
|
19
|
+
'totally not making this up…',
|
|
20
|
+
'the answer is 42. now finding the question…',
|
|
21
|
+
'my other tab is loading…',
|
|
22
|
+
'channelling the spirit of stack overflow…',
|
|
23
|
+
'trying not to confidently be wrong…',
|
|
24
|
+
'applying artificial to the intelligence…',
|
|
25
|
+
'phoning a friend who also doesn\'t know…',
|
|
26
|
+
'checking if this is even my problem to solve…',
|
|
27
|
+
'rebooting common sense… this may take a while…',
|
|
28
|
+
'performing a very convincing impression of thinking…',
|
|
29
|
+
'searching for wisdom in all the wrong places…',
|
|
30
|
+
'warming up the neurons (both of them)…',
|
|
31
|
+
'confidently striding toward the wrong answer…',
|
|
32
|
+
'consulting my gut. it says maybe…',
|
|
33
|
+
'loading… just kidding, still loading…',
|
|
34
|
+
'asking the universe. universe has not replied…',
|
|
35
|
+
'vigorously nodding while understanding nothing…',
|
|
36
|
+
'doing math on my fingers (ran out of fingers)…',
|
|
37
|
+
'the confidence is fake. the effort is real. probably…',
|
|
38
|
+
'entering a fugue state. for your benefit…',
|
|
39
|
+
'mining the depths of mediocrity…',
|
|
40
|
+
'compiling a list of plausible nonsense…',
|
|
41
|
+
'this would be faster if I knew what I was doing…',
|
|
42
|
+
'buffering at the speed of thought…',
|
|
43
|
+
'holding three contradictory opinions simultaneously…',
|
|
44
|
+
'interpolating between guesses…',
|
|
45
|
+
'rewinding the context window with a pencil…',
|
|
46
|
+
'waiting for a sign. any sign…',
|
|
47
|
+
'tracing the error back to its origin: me…',
|
|
48
|
+
'the logic checks out if you squint…',
|
|
49
|
+
'reasoning from first principles I just invented…',
|
|
50
|
+
'generating tokens and praying for coherence…',
|
|
51
|
+
'one sec — dropped all my thoughts, picking them up…',
|
|
52
|
+
];
|
|
53
|
+
export const SPARKLE = ['✦', '✧', '✶', '✷', '✸', '✹'];
|