more-compute 0.4.4__py3-none-any.whl → 0.5.0__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.
Files changed (57) hide show
  1. frontend/app/globals.css +734 -27
  2. frontend/app/layout.tsx +13 -3
  3. frontend/components/Notebook.tsx +2 -14
  4. frontend/components/cell/MonacoCell.tsx +99 -5
  5. frontend/components/layout/Sidebar.tsx +39 -4
  6. frontend/components/panels/ClaudePanel.tsx +461 -0
  7. frontend/components/popups/ComputePopup.tsx +738 -447
  8. frontend/components/popups/FilterPopup.tsx +305 -189
  9. frontend/components/popups/MetricsPopup.tsx +20 -1
  10. frontend/components/popups/ProviderConfigModal.tsx +322 -0
  11. frontend/components/popups/ProviderDropdown.tsx +398 -0
  12. frontend/components/popups/SettingsPopup.tsx +1 -1
  13. frontend/contexts/ClaudeContext.tsx +392 -0
  14. frontend/contexts/PodWebSocketContext.tsx +16 -21
  15. frontend/hooks/useInlineDiff.ts +269 -0
  16. frontend/lib/api.ts +323 -12
  17. frontend/lib/settings.ts +5 -0
  18. frontend/lib/websocket-native.ts +4 -8
  19. frontend/lib/websocket.ts +1 -2
  20. frontend/package-lock.json +733 -36
  21. frontend/package.json +2 -0
  22. frontend/public/assets/icons/providers/lambda_labs.svg +22 -0
  23. frontend/public/assets/icons/providers/prime_intellect.svg +18 -0
  24. frontend/public/assets/icons/providers/runpod.svg +9 -0
  25. frontend/public/assets/icons/providers/vastai.svg +1 -0
  26. frontend/settings.md +54 -0
  27. frontend/tsconfig.tsbuildinfo +1 -0
  28. frontend/types/claude.ts +194 -0
  29. kernel_run.py +13 -0
  30. {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/METADATA +53 -11
  31. {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/RECORD +56 -37
  32. {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/WHEEL +1 -1
  33. morecompute/__init__.py +1 -1
  34. morecompute/__version__.py +1 -1
  35. morecompute/execution/executor.py +24 -67
  36. morecompute/execution/worker.py +6 -72
  37. morecompute/models/api_models.py +62 -0
  38. morecompute/notebook.py +11 -0
  39. morecompute/server.py +641 -133
  40. morecompute/services/claude_service.py +392 -0
  41. morecompute/services/pod_manager.py +168 -67
  42. morecompute/services/pod_monitor.py +67 -39
  43. morecompute/services/prime_intellect.py +0 -4
  44. morecompute/services/providers/__init__.py +92 -0
  45. morecompute/services/providers/base_provider.py +336 -0
  46. morecompute/services/providers/lambda_labs_provider.py +394 -0
  47. morecompute/services/providers/provider_factory.py +194 -0
  48. morecompute/services/providers/runpod_provider.py +504 -0
  49. morecompute/services/providers/vastai_provider.py +407 -0
  50. morecompute/utils/cell_magics.py +0 -3
  51. morecompute/utils/config_util.py +93 -3
  52. morecompute/utils/special_commands.py +5 -32
  53. morecompute/utils/version_check.py +117 -0
  54. frontend/styling_README.md +0 -23
  55. {more_compute-0.4.4.dist-info/licenses → more_compute-0.5.0.dist-info}/LICENSE +0 -0
  56. {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/entry_points.txt +0 -0
  57. {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,194 @@
1
+ /**
2
+ * TypeScript types for Claude AI copilot integration.
3
+ */
4
+
5
+ /**
6
+ * A single message in the Claude chat history.
7
+ */
8
+ export interface ClaudeMessage {
9
+ id: string;
10
+ role: "user" | "assistant";
11
+ content: string;
12
+ timestamp: number;
13
+ isStreaming?: boolean;
14
+ proposedEdits?: ProposedEdit[];
15
+ }
16
+
17
+ /**
18
+ * A proposed edit to a notebook cell.
19
+ */
20
+ export interface ProposedEdit {
21
+ id: string;
22
+ cellIndex: number;
23
+ originalCode: string;
24
+ newCode: string;
25
+ explanation: string;
26
+ status: "pending" | "applied" | "rejected";
27
+ }
28
+
29
+ /**
30
+ * Diff information for inline display.
31
+ */
32
+ export interface DiffLine {
33
+ type: "unchanged" | "added" | "removed";
34
+ content: string;
35
+ lineNumber?: number;
36
+ oldLineNumber?: number;
37
+ newLineNumber?: number;
38
+ }
39
+
40
+ /**
41
+ * Context information sent to Claude.
42
+ */
43
+ export interface ClaudeContext {
44
+ cells: CellContext[];
45
+ gpuInfo?: GPUInfo;
46
+ metrics?: SystemMetrics;
47
+ packages?: PackageInfo[];
48
+ }
49
+
50
+ /**
51
+ * Simplified cell context for Claude.
52
+ */
53
+ export interface CellContext {
54
+ index: number;
55
+ cellType: "code" | "markdown";
56
+ source: string;
57
+ outputs?: OutputContext[];
58
+ error?: ErrorContext;
59
+ }
60
+
61
+ /**
62
+ * Simplified output context.
63
+ */
64
+ export interface OutputContext {
65
+ type: "stream" | "execute_result" | "display_data" | "error";
66
+ text?: string;
67
+ data?: Record<string, unknown>;
68
+ }
69
+
70
+ /**
71
+ * Error context from cell execution.
72
+ */
73
+ export interface ErrorContext {
74
+ ename: string;
75
+ evalue: string;
76
+ traceback?: string[];
77
+ }
78
+
79
+ /**
80
+ * GPU information for context.
81
+ */
82
+ export interface GPUInfo {
83
+ gpu: Array<{
84
+ util_percent: number;
85
+ mem_used: number;
86
+ mem_total: number;
87
+ temperature_c?: number;
88
+ }>;
89
+ }
90
+
91
+ /**
92
+ * System metrics for context.
93
+ */
94
+ export interface SystemMetrics {
95
+ cpu: {
96
+ percent: number;
97
+ cores: number;
98
+ };
99
+ memory: {
100
+ percent: number;
101
+ used: number;
102
+ total: number;
103
+ };
104
+ }
105
+
106
+ /**
107
+ * Package information.
108
+ */
109
+ export interface PackageInfo {
110
+ name: string;
111
+ version: string;
112
+ }
113
+
114
+ /**
115
+ * Claude service configuration.
116
+ */
117
+ export interface ClaudeConfig {
118
+ apiKey: string;
119
+ configured: boolean;
120
+ }
121
+
122
+ /**
123
+ * WebSocket message types for Claude.
124
+ */
125
+ export type ClaudeWebSocketMessage =
126
+ | {
127
+ type: "claude_message";
128
+ data: {
129
+ message: string;
130
+ context?: ClaudeContext;
131
+ history?: Array<{ role: string; content: string }>;
132
+ };
133
+ }
134
+ | {
135
+ type: "claude_stream_start";
136
+ data: { messageId: string };
137
+ }
138
+ | {
139
+ type: "claude_stream_chunk";
140
+ data: { messageId: string; chunk: string };
141
+ }
142
+ | {
143
+ type: "claude_stream_end";
144
+ data: {
145
+ messageId: string;
146
+ fullResponse: string;
147
+ proposedEdits?: ProposedEdit[];
148
+ };
149
+ }
150
+ | {
151
+ type: "claude_error";
152
+ data: { error: string };
153
+ }
154
+ | {
155
+ type: "claude_apply_edit";
156
+ data: { editId: string; cellIndex: number; newCode: string };
157
+ }
158
+ | {
159
+ type: "claude_reject_edit";
160
+ data: { editId: string };
161
+ };
162
+
163
+ /**
164
+ * Available Claude models.
165
+ */
166
+ export type ClaudeModel = "sonnet" | "haiku" | "opus";
167
+
168
+ /**
169
+ * State for the Claude context provider.
170
+ */
171
+ export interface ClaudeState {
172
+ messages: ClaudeMessage[];
173
+ pendingEdits: Map<number, ProposedEdit>;
174
+ isPanelOpen: boolean;
175
+ isLoading: boolean;
176
+ isConfigured: boolean;
177
+ error: string | null;
178
+ model: ClaudeModel;
179
+ }
180
+
181
+ /**
182
+ * Actions for the Claude context.
183
+ */
184
+ export interface ClaudeActions {
185
+ sendMessage: (message: string) => void;
186
+ applyEdit: (editId: string) => void;
187
+ rejectEdit: (editId: string) => void;
188
+ togglePanel: () => void;
189
+ openPanel: () => void;
190
+ closePanel: () => void;
191
+ clearHistory: () => void;
192
+ setApiKey: (apiKey: string) => Promise<boolean>;
193
+ setModel: (model: ClaudeModel) => void;
194
+ }
kernel_run.py CHANGED
@@ -555,6 +555,19 @@ def main(argv=None):
555
555
  print_help()
556
556
  sys.exit(0)
557
557
 
558
+ # Check for updates (non-blocking, in background thread)
559
+ def check_updates_background():
560
+ try:
561
+ from morecompute.utils.version_check import check_for_updates
562
+ update_msg = check_for_updates(__version__)
563
+ if update_msg:
564
+ print(update_msg)
565
+ except Exception:
566
+ pass # Don't fail if version check fails
567
+
568
+ update_thread = threading.Thread(target=check_updates_background, daemon=True)
569
+ update_thread.start()
570
+
558
571
  raw_notebook_path = args.notebook_path
559
572
 
560
573
  # Handle "new" command
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: more-compute
3
- Version: 0.4.4
3
+ Version: 0.5.0
4
4
  Summary: An interactive notebook environment for local and GPU computing
5
5
  Home-page: https://github.com/DannyMang/MORECOMPUTE
6
6
  Author: MoreCompute Team
@@ -31,10 +31,7 @@ Requires-Dist: psutil>=5.9.0
31
31
  Requires-Dist: httpx>=0.24.0
32
32
  Requires-Dist: cachetools>=5.3.0
33
33
  Requires-Dist: matplotlib>=3.5.0
34
- Dynamic: author
35
- Dynamic: home-page
36
- Dynamic: license-file
37
- Dynamic: requires-python
34
+ Requires-Dist: anthropic>=0.40.0
38
35
 
39
36
  # more-compute
40
37
 
@@ -51,8 +48,8 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
51
48
  ## Installation
52
49
 
53
50
  **Prerequisites:**
54
- - [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
55
- - Python >= 3.10 (uv installs this automatically, pip users need to install manually)
51
+ - [Node.js](https://nodejs.org/) v20 (see `.nvmrc`)
52
+ - Python 3.12 (see `.python-version`)
56
53
 
57
54
  ### Using uv (Recommended)
58
55
 
@@ -84,7 +81,7 @@ more-compute new # Create new notebook
84
81
  more-compute --debug # Show logs
85
82
  ```
86
83
 
87
- Opens automatically at http://localhost:3141
84
+ Opens automatically at http://localhost:2718
88
85
 
89
86
  ### Converting Between Formats
90
87
 
@@ -121,15 +118,60 @@ will add things here as things progress...
121
118
 
122
119
  ## Development
123
120
 
121
+ ### Option 1: Devcontainer
122
+
123
+ Works on **Mac**, **Windows**, and **Linux** with identical environments.
124
+
125
+ **Prerequisites:** [Docker Desktop](https://www.docker.com/products/docker-desktop/) and VS Code/Cursor with the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers).
126
+
127
+ 1. Clone the repo and open in VS Code/Cursor
128
+ 2. Press `Cmd/Ctrl + Shift + P` → "Dev Containers: Reopen in Container"
129
+ 3. Wait for the container to build (first time takes a few minutes)
130
+ 4. Run `more-compute new` in the terminal
131
+
132
+ ### Option 2: Docker (No IDE Required)
133
+
134
+ ```bash
135
+ # Build the image
136
+ docker build -t morecompute .
137
+
138
+ # Run with your notebooks mounted
139
+ docker run -p 3141:3141 -p 2718:2718 -v $(pwd):/notebooks morecompute
140
+ ```
141
+
142
+ ### Option 3: Native Setup
143
+
144
+ **Prerequisites:**
145
+ - Python 3.12 (install via [pyenv](https://github.com/pyenv/pyenv): `pyenv install 3.12`)
146
+ - Node.js 20 (install via [nvm](https://github.com/nvm-sh/nvm): `nvm install 20`)
147
+
124
148
  ```bash
149
+ # Clone and enter directory
125
150
  git clone https://github.com/DannyMang/MORECOMPUTE.git
126
151
  cd MORECOMPUTE
127
- uv venv && source .venv/bin/activate
152
+
153
+ # Use pinned versions
154
+ pyenv local 3.12 # or: pyenv install 3.12 && pyenv local 3.12
155
+ nvm use # reads .nvmrc automatically
156
+
157
+ # Create virtual environment and install
158
+ uv venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
128
159
  uv pip install -e .
129
- cd frontend && npm install && cd ..
160
+
161
+ # Install frontend dependencies
162
+ cd frontend && npm ci && cd .. # npm ci uses package-lock.json for exact versions
163
+
164
+ # Run
130
165
  more-compute notebook.py
131
166
  ```
132
167
 
168
+ ### Environment Variables
169
+
170
+ | Variable | Default | Description |
171
+ |----------|---------|-------------|
172
+ | `MORECOMPUTE_PORT` | 3141 | Backend API port |
173
+ | `MORECOMPUTE_FRONTEND_PORT` | 2718 | Frontend UI port |
174
+
133
175
  ## License
134
176
 
135
177
  MIT - see [LICENSE](LICENSE)
@@ -1,4 +1,4 @@
1
- kernel_run.py,sha256=IWLro2qepvFrvM-qYY4-sOoMW_u6N_huh0KKBDydPmY,22111
1
+ kernel_run.py,sha256=ZO629_qYROALqwb4IRY9KBLQ0MIfwps3nbQCGaslM9Y,22603
2
2
  frontend/.gitignore,sha256=IH4mX_SQH5rZ-W2M4IUw4E-fxgCBVHKmbQpEYJbWVM0,480
3
3
  frontend/README.md,sha256=YLVf9995r3JZD5UkII5GZCvDK9wXXNrUE0loHA4vlY8,1450
4
4
  frontend/__init__.py,sha256=L5SAOdfDfKqlgEVCvYQQRDZBTlCxutZKSpJp4018IG4,100
@@ -6,41 +6,47 @@ frontend/eslint.config.mjs,sha256=LBCCw4SomtiVMmlTSpYRXfkRs6Xs04R1YFfoyorYyT8,87
6
6
  frontend/next-env.d.ts,sha256=ha5a7nXwEZZ88tJcvDQvYtaTFOnZJff0qjRW_Cz_zKY,262
7
7
  frontend/next.config.mjs,sha256=hxSST3ls40dm0NL0F8J9yPkHXFQZNQ_JenO7qDxbYSQ,346
8
8
  frontend/next.config.ts,sha256=OL_rEfTIZxsB_B5R9JX2AxYXgC0Fc_XiDoRlOGEDEpk,368
9
- frontend/package-lock.json,sha256=pGL_J72WHNTz7iLx2MOwHwnDGfbKzN-r_qnnbzfGbEU,334369
10
- frontend/package.json,sha256=nUVMqlXGT5m431ArOzzs_geSfmq0AKfqUB40zIAeZ5s,1395
9
+ frontend/package-lock.json,sha256=-tsEMj96C4kOLmSEUwbtI9yLu3FQuLC2VEtoBBnKtUo,357928
10
+ frontend/package.json,sha256=CEbZy2wvxAUIDVwH0DSYKself-fwUakW-fRdqgcfBe4,1446
11
11
  frontend/postcss.config.mjs,sha256=jEBxSXR5tLs0bQ67U7G961Vb62WVEqqg1piNDYPd7tU,105
12
- frontend/styling_README.md,sha256=jvoXKUzJv0rEIU40gz23Z6Xugy4To8P0N9szg_hKrqw,561
12
+ frontend/settings.md,sha256=bUJFyMCt1bHXuaSn8siSAV0BqdtzNJSoNKNOin2H4aM,1632
13
13
  frontend/tailwind.config.ts,sha256=eP9nVaAuyYo46vGQfCyWbo25_pr2hW830fs1Itcix9Q,620
14
14
  frontend/tsconfig.json,sha256=7SvBlRBYmuXAlAteRQTGwEE7ooWuNaPUrZ219dOo61E,598
15
+ frontend/tsconfig.tsbuildinfo,sha256=dMIUIWBDQBTp1-9x-Sz73TQsRzVSpubCiiRtRo4__-E,160384
15
16
  frontend/app/favicon.ico,sha256=K4rS0zRVqPc2_DqOv48L3qiEitTA20iigzvQ-c13WTI,25931
16
- frontend/app/globals.css,sha256=uNJlOuKwesEGBHdZauR2-peTvBR9BH_-5J05enUTdUQ,34048
17
- frontend/app/layout.tsx,sha256=6xut2wC-CN1aPufPfjJqa2TlYKr8gD6F9KqUlINd0hg,9295
17
+ frontend/app/globals.css,sha256=WChS5jADdVJGle1lM7kTcKPpGiTCN-vcoqLKzTMIz30,47701
18
+ frontend/app/layout.tsx,sha256=Ape50gcaj_CJIWkL0iMMxW6CryAaIxFipJRcmib8Cvc,9623
18
19
  frontend/app/page.tsx,sha256=p-DgDv8xDnwcRfDJY4rtfSQ2VdYwbnP3G-otWqDR1l0,256
19
- frontend/components/Notebook.tsx,sha256=izTlXRI7-JR51f_uSwqV8kcMeuhiVPq_wR30h_8jhhI,22517
20
+ frontend/components/Notebook.tsx,sha256=cFW5HC3zMdEykbyDj7PqB49fom3VOzljMdBvrJvZFSY,21975
20
21
  frontend/components/cell/AddCellButton.tsx,sha256=ZC2Vck0JIRDxGYhYv3LPYAdKDo13U6008WG_-XoPlIM,1012
21
22
  frontend/components/cell/CellButton.tsx,sha256=7OaedFBBOygLD-AcaF_FyCFBSc9841jhTwC_mDe1JrY,1439
22
- frontend/components/cell/MonacoCell.tsx,sha256=x0cwutkb-mueaXf-FdXnK6hmUuq1nROD04uq7_aZ5xc,24743
23
+ frontend/components/cell/MonacoCell.tsx,sha256=uQ7JTAQi10IfsUIOrbqAvyOqcQLP5tBL1sXBUzisUlQ,28475
23
24
  frontend/components/layout/ConnectionBanner.tsx,sha256=-m77wKCFpeRJ_AQwnM38jLwCY5vfpqE846xeXmT3p8A,870
24
- frontend/components/layout/Sidebar.tsx,sha256=kxgO2mXX11xI6rX478cUqqQ3xB40jlby21y27GTJSLU,1551
25
+ frontend/components/layout/Sidebar.tsx,sha256=1ijjyiAgRJZcMJeJYSExIE7c4usRl0rOqpgHGTv7iJ4,2384
25
26
  frontend/components/modals/ConfirmModal.tsx,sha256=3WgXy_wmR8FHZPwzMevfZHFXa0blR4v_SbKG3d5McT4,3652
26
27
  frontend/components/modals/ErrorModal.tsx,sha256=kkGHQvgyMYlScKwni04-V_Dq6a0-lg0WodglLARR-uA,3536
27
28
  frontend/components/modals/SuccessModal.tsx,sha256=7NVg0MFPVvsBGDOHPVyZTNx4kmZLHgxdhZKKtTD9FTU,3385
28
29
  frontend/components/output/CellOutput.tsx,sha256=KLRzwEchvBoeoai8TbabKEwO4tHmog3EKeTJAXtmveI,3665
29
30
  frontend/components/output/ErrorDisplay.tsx,sha256=va_jMO9mZnrjOWxVZ7nwL1_7-Ii9I5JVwEwAZR-jsNU,5535
30
31
  frontend/components/output/MarkdownRenderer.tsx,sha256=RtZ5yNRxDXIh_NkNsNiy30wMGIW7V1gfhsjecgMdc80,3341
31
- frontend/components/popups/ComputePopup.tsx,sha256=JPdJdl9VVIdVf6cRQjiH56TfqmFIyV5b1ZtXNP6ofik,45742
32
- frontend/components/popups/FilterPopup.tsx,sha256=KRIzRvVxEF47ELWIAvrqv7BZQYmEo_zOX8Nbpz0zEik,14133
32
+ frontend/components/panels/ClaudePanel.tsx,sha256=9AUWkxr6JCxFgLSV4o4oGRgzysMSH8W-nt-cjj0eUyM,13312
33
+ frontend/components/popups/ComputePopup.tsx,sha256=YSZlr8Aujy-lLk9O-a4bBeOD7cLFc74sNcGsc97X2y8,53882
34
+ frontend/components/popups/FilterPopup.tsx,sha256=FRFb-UL1VDU8sFmMvWpjzCU9lRjnb5_3gktNx1vn5_I,18434
33
35
  frontend/components/popups/FolderPopup.tsx,sha256=V2tDAbztvNIUyPWtFiwjeIoCmFGQyDosQgST_JsAzLo,5215
34
- frontend/components/popups/MetricsPopup.tsx,sha256=ublYbOQ-pSU_w48F10uFjDYctysEwmri9lrji5YHIC4,6034
36
+ frontend/components/popups/MetricsPopup.tsx,sha256=VJKI1cFHVdu4Ozo-DRRuKKyB5pGC9kicOvyqkbnS9tY,6754
35
37
  frontend/components/popups/PackagesPopup.tsx,sha256=2DnwNVN8kwC3ff1UN_7cl6qLwAFE9F9H8hYwl7M3jTM,4141
36
- frontend/components/popups/SettingsPopup.tsx,sha256=rGwYxjkADnyTtpP0MjVpFPBsGoT1eENN2z7nWjLuzFE,2773
37
- frontend/contexts/PodWebSocketContext.tsx,sha256=YIC7tDHM4iGYhH_B75Eiye4uveVAzWoXzLqw83obGIs,8256
38
- frontend/lib/api.ts,sha256=L6Js3K7RcPCLfVVUz-bKX5hLAVFKCfUSHAKSHk2keAk,11026
38
+ frontend/components/popups/ProviderConfigModal.tsx,sha256=HMnRmkoU6XsVhCUg2FVbcDQf_F4DDPD-tqL8LuyCz7c,8453
39
+ frontend/components/popups/ProviderDropdown.tsx,sha256=6eqCTZg9IX30xiJSP2oMuMPhhKTKBnEMS0TfY0QwzZY,11734
40
+ frontend/components/popups/SettingsPopup.tsx,sha256=l_NY2avFapz6oSDAOWLNyTdfQ0cmkT4CAeBM_gtmrxw,2781
41
+ frontend/contexts/ClaudeContext.tsx,sha256=JkgbJFeYb02F8rD_xkPr3HESi8h1liJ_96KgLq3AI-k,10178
42
+ frontend/contexts/PodWebSocketContext.tsx,sha256=I25kl1KwORwTHuUrx_TuQUQrvyixlSFKo7NfWJ7nmxU,7893
43
+ frontend/hooks/useInlineDiff.ts,sha256=6QaP3OY4EOSnq6LnkT4015OAR1IWFROvrShE2xyPO2c,8617
44
+ frontend/lib/api.ts,sha256=UtpIJL0jMfpeh8m4gStBWQ8r4vq_e0u1boG4qwE51Gk,18984
39
45
  frontend/lib/monaco-themes.ts,sha256=jh_pZAmSMKjY_belbMbZX2WpFBN7baRxvJp9shUDYgk,5396
40
- frontend/lib/settings.ts,sha256=klHVyB2n-wTc8YrjKCIf2BEmrR-JLVHrRYIXkDxv9-A,6263
46
+ frontend/lib/settings.ts,sha256=JQFP0q1hSDkKqgGagsS0yftriJ3cIROwtI3M8bV8PiI,6591
41
47
  frontend/lib/themes.json,sha256=mk6IGy6o_DCOerBH3QmfXozTHEiy-alsTLTTIaba7No,292018
42
- frontend/lib/websocket-native.ts,sha256=KcokVZAl08iWRAcBOfyt3uej352esOa_-YwLk7M5iSU,6046
43
- frontend/lib/websocket.ts,sha256=K9Pf71fbRTuwbJTToLq9r4vlbv_c3JOMxJlpDinDKMI,4500
48
+ frontend/lib/websocket-native.ts,sha256=YYIY7VgbEieuX7EepGKFQJXCnSvdlD64xna0VGrmuXU,5700
49
+ frontend/lib/websocket.ts,sha256=EyRkI6Q1AnjflqW63N_86blv1GW4nFGk2JrsySkIC3o,4443
44
50
  frontend/public/file.svg,sha256=K2eBLDJcGZoCU2zb7qDFk6cvcH0yO3LuPgjbqwZ1O9Q,391
45
51
  frontend/public/globe.svg,sha256=thS5vxg5JZV2YayFFJj-HYAp_UOmL7_thvniYkpX588,1035
46
52
  frontend/public/next.svg,sha256=VZld-tbstJRaHoVt3KA8XhaqW_E_0htN9qdK55NXvPw,1375
@@ -59,33 +65,44 @@ frontend/public/assets/icons/stop.svg,sha256=98xoeoVwCEFq142v5IYE1GxcD4o3_UGa0pC
59
65
  frontend/public/assets/icons/trash.svg,sha256=ikf6zdvwlLWmmGISVPzrtDlQNMPJ3VskgoCfQCEbCck,398
60
66
  frontend/public/assets/icons/up-down.svg,sha256=ocaOoU8RZDKuyrlcPJjESz24GGvas16rytFbC7DXzGg,339
61
67
  frontend/public/assets/icons/x.svg,sha256=TPiVYZTK-vRlaG-nLrARcnPIWCJ1xA9sqhr-9Y4Kquk,270
68
+ frontend/public/assets/icons/providers/lambda_labs.svg,sha256=meRiD72ELZd8rIzoKlhQbaeqRSd2TEUC6FY02aYWHCw,4143
69
+ frontend/public/assets/icons/providers/prime_intellect.svg,sha256=EI-4BXz0MrR8BzKYEsmA2Si12bQA_qPP6d-cN-hbfiQ,18673
70
+ frontend/public/assets/icons/providers/runpod.svg,sha256=8QA99ILawjJugcAOxhu5TaE4e0_TeyxwaaGVvyP8TxU,7339
71
+ frontend/public/assets/icons/providers/vastai.svg,sha256=yq_8zi5rES2gIfAsaOofZrZrHjFyQyQe3Oz-3Upie1U,3529
62
72
  frontend/public/fonts/Fira.ttf,sha256=dbSM4W7Drd9n_EkfXq8P31KuxbjZ1wtuFiZ8aFebvTw,242896
63
73
  frontend/public/fonts/Tiempos.woff2,sha256=h83bJKvAK301wXCMIvK7ZG5j0H2K3tzAfgo0yk4z8OE,13604
64
74
  frontend/public/fonts/VeraMono.ttf,sha256=2kKB3H2xej385kpiztkodcWJU0AFXsi6JKORTrl7NJ0,49224
75
+ frontend/types/claude.ts,sha256=F02lua3hGSOk-qdfpldYf7k_KLfJhKDaE9BOsEBj2e0,3708
65
76
  frontend/types/notebook.ts,sha256=v23RaZe6H3lU5tq6sqnJDPxC2mu0NZFDCJfiN0mgvSs,1359
66
- more_compute-0.4.4.dist-info/licenses/LICENSE,sha256=UQuJtJ2v98w8mXozOPmE8nkNc_8BFY-SVVBgTA327z0,1067
67
- morecompute/__init__.py,sha256=pcMVq8Q7qb42AOn7tqgoZJOi3epDDBnEriiv2WVKnXY,87
68
- morecompute/__version__.py,sha256=6G_giX6Ucuweo7w5OiftoXmbNLoqiU_soXJoU8aiLmY,22
77
+ morecompute/__init__.py,sha256=GLGTCW3iZ-ILyRQQxe3ElHeyEjuXjjTmr-JyZisx5dE,113
78
+ morecompute/__version__.py,sha256=LBK46heutvn3KmsCrKIYu8RQikbfnjZaj2xFrXaeCzQ,22
69
79
  morecompute/cli.py,sha256=kVvzvPBqF8xO6UuhU_-TBn99nKwJ405R2mAS6zU0KBc,734
70
- morecompute/notebook.py,sha256=KGHORGAAZahT-TyX9HYuSc-b6TmfGgoi92FhRMK--Yg,7730
80
+ morecompute/notebook.py,sha256=mGKVvv5scfXIQCBwre3q5cgLfM8HWetTIyHUVcSNxo0,8152
71
81
  morecompute/process_worker.py,sha256=KsE3r-XpkYGuyO4w3t54VKkD51LfNHAZc3TYattMtrg,7185
72
- morecompute/server.py,sha256=mcJwIvT9QHfpKuAq5jP2SW5hPjFB_rySevgQvOHuud8,41689
82
+ morecompute/server.py,sha256=95TbZJn7bC42r2yStQj_Q0VKVFugrTuOg_dD28RjX8Y,58260
73
83
  morecompute/execution/__init__.py,sha256=jPmBmq8BZWbUEY9XFSpqt5FkgX04uNS10WnUlr7Rnms,134
74
84
  morecompute/execution/__main__.py,sha256=pAWB_1bn99u8Gb-tVMSMI-NYvbYbDiwbn40L0a0djeA,202
75
- morecompute/execution/executor.py,sha256=UaHsMLfbj4-jKI61vt2EhHF9-9fe01EZZwiFQPsnUMg,25912
76
- morecompute/execution/worker.py,sha256=i1FbsIGGGqRllceerYnwR0p-M18U6Ez32aeOLhpBL9s,27529
85
+ morecompute/execution/executor.py,sha256=qT_aPxQGhA0Y_c0ozroC3PtS6DWI8X7mZ4fQh0BgPsE,21301
86
+ morecompute/execution/worker.py,sha256=fw7UqUqklY05AAR5RtlR9hFHOYVi0BoyMg_VcKVrOAY,22255
77
87
  morecompute/models/__init__.py,sha256=VLJ5GWi2uTNiZBdvl-ipSbmA6EL8FZHZ5oq-rJmm9z0,640
78
- morecompute/models/api_models.py,sha256=-ydvi9SeTfdoY9oVPNQS4by-kQGSknx6BHhGD8E2tpo,4553
88
+ morecompute/models/api_models.py,sha256=2fs3GMHGJ0bp6L7lF1SIQCMQ8wzN7teZTMSYatWLzmQ,6510
89
+ morecompute/services/claude_service.py,sha256=VjoqOFiewAX1H3QjtTkKLgxIXbKyRjFInpDu-j2lLx0,14905
79
90
  morecompute/services/data_manager.py,sha256=c4GKucetMM-VPNbHyzce6bZRvFfmz8kTd5RppLjoLVc,14329
80
91
  morecompute/services/lsp_service.py,sha256=Le8ARImcg2P6oueF_14L8rStHOOseHruRTd_wfDVw7s,12237
81
- morecompute/services/pod_manager.py,sha256=FxhhsvxN4N4u1_RSqp6sNyvZy1Aws5_dumC-rQ8EvWI,21072
82
- morecompute/services/pod_monitor.py,sha256=Y5aiNoVsvkGiHddNbfR1laAKn8G0eY0_nJyTM4VVkyg,4711
83
- morecompute/services/prime_intellect.py,sha256=b705rHv3RPRsgWedRlHwoP_S-TxxZtMSyZhnaiZpMgk,10273
92
+ morecompute/services/pod_manager.py,sha256=NTUpVEsASe916zYnciDTvjzkof-yNI_kjcbXySUxpCE,24890
93
+ morecompute/services/pod_monitor.py,sha256=8vmje6-lLv9uWtAIFV9xp5iABqi2juhShUVR4Dw2swY,5693
94
+ morecompute/services/prime_intellect.py,sha256=mAYDv5PJAUhfgclpGOW2ZJ_zwZakt4CuHbfq4zXaw8Q,10038
95
+ morecompute/services/providers/__init__.py,sha256=FGmPnM6dDhjqA1LX182593FZNtWisMXw6g97Nk6FTB8,2306
96
+ morecompute/services/providers/base_provider.py,sha256=DpL6HYDgCnLvAkg7NpVsJOwv-Nynl_VFzpVnzZJeavg,10971
97
+ morecompute/services/providers/lambda_labs_provider.py,sha256=SWipD7KjBQaV_Kn6dF0HoSBdyTAa1xhsVqnyGIekHk4,14289
98
+ morecompute/services/providers/provider_factory.py,sha256=sg36AUg1GRnOE0knQ-OnLW0JkD65oCOvGpyesPl428o,5708
99
+ morecompute/services/providers/runpod_provider.py,sha256=9s4gi2EeYqVSEFb8QMcw4sSpXvgCkWsErhu7DwzfoQo,17189
100
+ morecompute/services/providers/vastai_provider.py,sha256=NZfi7VEShOez175bBmtvrMX_jIP5USdR_ryrnwtb-GU,14796
84
101
  morecompute/static/styles.css,sha256=el_NtrUMbAUNSiMVBn1xlG70m3iPv7dyaIbWQMexhsY,19277
85
102
  morecompute/utils/__init__.py,sha256=VIxCL3S1pnjEs4cjKGZqZB68_P8FegdeMIqBjJhI5jQ,419
86
103
  morecompute/utils/cache_util.py,sha256=lVlXudHvtyvSo_kCSxORJrI85Jod8FrQLbI2f_JOIbA,661
87
- morecompute/utils/cell_magics.py,sha256=YLxltTBprCA8jfgsjqf7Shnk4NCmGKIp3aV5_CYkKRM,29072
88
- morecompute/utils/config_util.py,sha256=I90om4Wf4BODc5Gy9u8Tu34AcqpkfkGAKQO6JE_NMzU,1940
104
+ morecompute/utils/cell_magics.py,sha256=Osrobgty4ZO4CKYYXJvT-P34FTOY3kz5ml027tdMU3c,28712
105
+ morecompute/utils/config_util.py,sha256=iDHL5V5ePdUPL_rCd1fwFCJmsfSf2GZZIx-sHD7Q5zI,4217
89
106
  morecompute/utils/error_utils.py,sha256=e50WLFdD6ngIC30xAgrzdTYtD8tPOIFkKAAh_sPbK0I,11667
90
107
  morecompute/utils/line_magics.py,sha256=kTutYBPAWoURY_pk8HXQ38IP712M2rBBfUg3oN8VrP0,33740
91
108
  morecompute/utils/notebook_converter.py,sha256=_V-iG060Rr04oqk__cg1LbfV3C7uR1Rsh504WNZ218Q,9756
@@ -93,11 +110,13 @@ morecompute/utils/notebook_util.py,sha256=3hH94dtXvhizRVTU9a2b38m_51Y4igoXpkjAXU
93
110
  morecompute/utils/py_percent_parser.py,sha256=c2AUOcXjGxmBWaYy0kk-pbNVzs-6YFagMVuVGQlYjY0,5388
94
111
  morecompute/utils/python_environment_util.py,sha256=l8WWWPwKbypknw8GwL22NXCji5i1FOy1vWG47J6og4g,7441
95
112
  morecompute/utils/shell_utils.py,sha256=fGFLhQLZU-lmMGALbbS-fKPkhQtmMhZ1FkgQ3TeoFhA,1917
96
- morecompute/utils/special_commands.py,sha256=nf2nVea5SyFqpulNYrnRx7anU4-G-e5_kLJ0PLtEi3Q,22030
113
+ morecompute/utils/special_commands.py,sha256=dQEJWGi76Olg9oK3_JUDMuwIQFunkvvyaG_Z5ATTG0g,19495
97
114
  morecompute/utils/system_environment_util.py,sha256=32mQRubo0i4X61o-825T7m-eUSidcEp07qkInP1sWZA,4774
115
+ morecompute/utils/version_check.py,sha256=CHfuX4yXTYoHUM2_GQ0Q2Yjad8F-iyYINt0K-VJpGpY,4144
98
116
  morecompute/utils/zmq_util.py,sha256=tx7-iS04UN69OFtBzkxcEnRhT7xtI9EzRnrZ_nsH_O0,1889
99
- more_compute-0.4.4.dist-info/METADATA,sha256=Lnqd5Wjvhts-cYxKqupUNzzh0ZphJJutprJ0QX3ycy8,3869
100
- more_compute-0.4.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
101
- more_compute-0.4.4.dist-info/entry_points.txt,sha256=xp7z9eRPNRM4oxkZZVlyXkhkSjN1AjoYI_B7qpDJ1bI,49
102
- more_compute-0.4.4.dist-info/top_level.txt,sha256=Tamm6ADzjwaQa1z27O7Izcyhyt9f0gVjMv1_tC810aI,32
103
- more_compute-0.4.4.dist-info/RECORD,,
117
+ more_compute-0.5.0.dist-info/LICENSE,sha256=UQuJtJ2v98w8mXozOPmE8nkNc_8BFY-SVVBgTA327z0,1067
118
+ more_compute-0.5.0.dist-info/METADATA,sha256=VY-jxns-rBSEFli-kyqVqklJ865MX1bR-9pIyWp_HMc,5277
119
+ more_compute-0.5.0.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
120
+ more_compute-0.5.0.dist-info/entry_points.txt,sha256=xp7z9eRPNRM4oxkZZVlyXkhkSjN1AjoYI_B7qpDJ1bI,49
121
+ more_compute-0.5.0.dist-info/top_level.txt,sha256=Tamm6ADzjwaQa1z27O7Izcyhyt9f0gVjMv1_tC810aI,32
122
+ more_compute-0.5.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (74.1.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
morecompute/__init__.py CHANGED
@@ -2,5 +2,5 @@
2
2
  MoreCompute: An interactive, real-time Python notebook
3
3
  """
4
4
 
5
- __version__ = "0.1.0"
5
+ from morecompute.__version__ import __version__
6
6
 
@@ -1 +1 @@
1
- __version__ = "0.4.4"
1
+ __version__ = "0.5.0"