akseljoonas HF Staff commited on
Commit
bb47b16
·
1 Parent(s): ae4a534

Update README CLI examples for ml-intern rename

Browse files
Files changed (1) hide show
  1. README.md +9 -9
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-agent.git
15
- cd ml-agent
16
  uv sync
17
  uv tool install -e .
18
  ```
19
 
20
- #### That's it. Now `ml-agent` works from any directory:
21
 
22
  ```bash
23
- ml-agent
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-agent
41
  ```
42
 
43
  **Headless mode** (single prompt, auto-approve):
44
 
45
  ```bash
46
- ml-agent "fine-tune llama on my dataset"
47
  ```
48
 
49
  **Options:**
50
 
51
  ```bash
52
- ml-agent --model anthropic/claude-opus-4-6 "your prompt"
53
- ml-agent --max-iterations 100 "your prompt"
54
- ml-agent --no-stream "your prompt"
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