Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Commit ·
bb47b16
1
Parent(s): ae4a534
Update README CLI examples for ml-intern rename
Browse files
README.md
CHANGED
|
@@ -11,16 +11,16 @@ An MLE agent that researches, writes, and ships good quality ML releated code us
|
|
| 11 |
### Installation
|
| 12 |
|
| 13 |
```bash
|
| 14 |
-
git clone git@github.com:huggingface/ml-
|
| 15 |
-
cd ml-
|
| 16 |
uv sync
|
| 17 |
uv tool install -e .
|
| 18 |
```
|
| 19 |
|
| 20 |
-
#### That's it. Now `ml-
|
| 21 |
|
| 22 |
```bash
|
| 23 |
-
ml-
|
| 24 |
```
|
| 25 |
|
| 26 |
Create a `.env` file in the project root (or export these in your shell):
|
|
@@ -37,21 +37,21 @@ If no `HF_TOKEN` is set, the CLI will prompt you to paste one on first launch. T
|
|
| 37 |
**Interactive mode** (start a chat session):
|
| 38 |
|
| 39 |
```bash
|
| 40 |
-
ml-
|
| 41 |
```
|
| 42 |
|
| 43 |
**Headless mode** (single prompt, auto-approve):
|
| 44 |
|
| 45 |
```bash
|
| 46 |
-
ml-
|
| 47 |
```
|
| 48 |
|
| 49 |
**Options:**
|
| 50 |
|
| 51 |
```bash
|
| 52 |
-
ml-
|
| 53 |
-
ml-
|
| 54 |
-
ml-
|
| 55 |
```
|
| 56 |
|
| 57 |
## Architecture
|
|
|
|
| 11 |
### Installation
|
| 12 |
|
| 13 |
```bash
|
| 14 |
+
git clone git@github.com:huggingface/ml-intern.git
|
| 15 |
+
cd ml-intern
|
| 16 |
uv sync
|
| 17 |
uv tool install -e .
|
| 18 |
```
|
| 19 |
|
| 20 |
+
#### That's it. Now `ml-intern` works from any directory:
|
| 21 |
|
| 22 |
```bash
|
| 23 |
+
ml-intern
|
| 24 |
```
|
| 25 |
|
| 26 |
Create a `.env` file in the project root (or export these in your shell):
|
|
|
|
| 37 |
**Interactive mode** (start a chat session):
|
| 38 |
|
| 39 |
```bash
|
| 40 |
+
ml-intern
|
| 41 |
```
|
| 42 |
|
| 43 |
**Headless mode** (single prompt, auto-approve):
|
| 44 |
|
| 45 |
```bash
|
| 46 |
+
ml-intern "fine-tune llama on my dataset"
|
| 47 |
```
|
| 48 |
|
| 49 |
**Options:**
|
| 50 |
|
| 51 |
```bash
|
| 52 |
+
ml-intern --model anthropic/claude-opus-4-6 "your prompt"
|
| 53 |
+
ml-intern --max-iterations 100 "your prompt"
|
| 54 |
+
ml-intern --no-stream "your prompt"
|
| 55 |
```
|
| 56 |
|
| 57 |
## Architecture
|