more-compute 0.4.3__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.
- frontend/app/globals.css +734 -27
- frontend/app/layout.tsx +13 -3
- frontend/components/Notebook.tsx +2 -14
- frontend/components/cell/MonacoCell.tsx +99 -5
- frontend/components/layout/Sidebar.tsx +39 -4
- frontend/components/panels/ClaudePanel.tsx +461 -0
- frontend/components/popups/ComputePopup.tsx +739 -418
- frontend/components/popups/FilterPopup.tsx +305 -189
- frontend/components/popups/MetricsPopup.tsx +20 -1
- frontend/components/popups/ProviderConfigModal.tsx +322 -0
- frontend/components/popups/ProviderDropdown.tsx +398 -0
- frontend/components/popups/SettingsPopup.tsx +1 -1
- frontend/contexts/ClaudeContext.tsx +392 -0
- frontend/contexts/PodWebSocketContext.tsx +16 -21
- frontend/hooks/useInlineDiff.ts +269 -0
- frontend/lib/api.ts +323 -12
- frontend/lib/settings.ts +5 -0
- frontend/lib/websocket-native.ts +4 -8
- frontend/lib/websocket.ts +1 -2
- frontend/package-lock.json +733 -36
- frontend/package.json +2 -0
- frontend/public/assets/icons/providers/lambda_labs.svg +22 -0
- frontend/public/assets/icons/providers/prime_intellect.svg +18 -0
- frontend/public/assets/icons/providers/runpod.svg +9 -0
- frontend/public/assets/icons/providers/vastai.svg +1 -0
- frontend/settings.md +54 -0
- frontend/tsconfig.tsbuildinfo +1 -0
- frontend/types/claude.ts +194 -0
- kernel_run.py +13 -0
- {more_compute-0.4.3.dist-info → more_compute-0.5.0.dist-info}/METADATA +53 -11
- {more_compute-0.4.3.dist-info → more_compute-0.5.0.dist-info}/RECORD +56 -37
- {more_compute-0.4.3.dist-info → more_compute-0.5.0.dist-info}/WHEEL +1 -1
- morecompute/__init__.py +1 -1
- morecompute/__version__.py +1 -1
- morecompute/execution/executor.py +24 -67
- morecompute/execution/worker.py +6 -72
- morecompute/models/api_models.py +62 -0
- morecompute/notebook.py +11 -0
- morecompute/server.py +641 -133
- morecompute/services/claude_service.py +392 -0
- morecompute/services/pod_manager.py +168 -67
- morecompute/services/pod_monitor.py +67 -39
- morecompute/services/prime_intellect.py +0 -4
- morecompute/services/providers/__init__.py +92 -0
- morecompute/services/providers/base_provider.py +336 -0
- morecompute/services/providers/lambda_labs_provider.py +394 -0
- morecompute/services/providers/provider_factory.py +194 -0
- morecompute/services/providers/runpod_provider.py +504 -0
- morecompute/services/providers/vastai_provider.py +407 -0
- morecompute/utils/cell_magics.py +0 -3
- morecompute/utils/config_util.py +93 -3
- morecompute/utils/special_commands.py +5 -32
- morecompute/utils/version_check.py +117 -0
- frontend/styling_README.md +0 -23
- {more_compute-0.4.3.dist-info/licenses → more_compute-0.5.0.dist-info}/LICENSE +0 -0
- {more_compute-0.4.3.dist-info → more_compute-0.5.0.dist-info}/entry_points.txt +0 -0
- {more_compute-0.4.3.dist-info → more_compute-0.5.0.dist-info}/top_level.txt +0 -0
frontend/types/claude.ts
ADDED
|
@@ -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.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: more-compute
|
|
3
|
-
Version: 0.
|
|
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
|
-
|
|
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/)
|
|
55
|
-
- Python
|
|
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:
|
|
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
|
-
|
|
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
|
-
|
|
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=
|
|
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
|
|
10
|
-
frontend/package.json,sha256=
|
|
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/
|
|
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=
|
|
17
|
-
frontend/app/layout.tsx,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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/
|
|
32
|
-
frontend/components/popups/
|
|
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=
|
|
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/
|
|
37
|
-
frontend/
|
|
38
|
-
frontend/
|
|
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=
|
|
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=
|
|
43
|
-
frontend/lib/websocket.ts,sha256=
|
|
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
|
-
|
|
67
|
-
morecompute/
|
|
68
|
-
morecompute/__version__.py,sha256=Nyg0pmk5ea9-SLCAFEIF96ByFx4-TJFtrqYPN-Zn6g4,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=
|
|
80
|
+
morecompute/notebook.py,sha256=mGKVvv5scfXIQCBwre3q5cgLfM8HWetTIyHUVcSNxo0,8152
|
|
71
81
|
morecompute/process_worker.py,sha256=KsE3r-XpkYGuyO4w3t54VKkD51LfNHAZc3TYattMtrg,7185
|
|
72
|
-
morecompute/server.py,sha256=
|
|
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=
|
|
76
|
-
morecompute/execution/worker.py,sha256=
|
|
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
|
|
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=
|
|
82
|
-
morecompute/services/pod_monitor.py,sha256=
|
|
83
|
-
morecompute/services/prime_intellect.py,sha256=
|
|
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=
|
|
88
|
-
morecompute/utils/config_util.py,sha256=
|
|
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=
|
|
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.
|
|
100
|
-
more_compute-0.
|
|
101
|
-
more_compute-0.
|
|
102
|
-
more_compute-0.
|
|
103
|
-
more_compute-0.
|
|
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,,
|
morecompute/__init__.py
CHANGED
morecompute/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.5.0"
|