Skip to content

Commit f90dd26

Browse files
committed
Updated installation guide
1 parent 2ae0d97 commit f90dd26

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ atlas is not yet on CRAN. Install the development version from
3737

3838
```{r}
3939
# install.packages("pak")
40-
pak::pkg_install("mattyoreilly/Atlas")
40+
pak::pkg_install("mattyoreilly/atlas")
4141
```
4242

4343
You also need an API key for an LLM provider. atlas defaults to Anthropic:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ atlas is not yet on CRAN. Install the development version from
3131

3232
``` r
3333
# install.packages("pak")
34-
pak::pkg_install("mattyoreilly/Atlas")
34+
pak::pkg_install("mattyoreilly/atlas")
3535
```
3636

3737
You also need an API key for an LLM provider. atlas defaults to

example.R

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ cat(res$code, sep = "\n\n") # the full script the agent wrote
5454
res$session$add_budget(steps = 25)
5555
res$session$tell("remove the worst predictor and re-evaluate")
5656

57-
res$session$tell("Remove the worst predictor")
57+
58+
res <- res$session$results()
59+
res$models # now Logistic_Regression = v2, no LOAN_TERM
60+
res$leaderboard # the v2 row
61+
res$tally # full attempt history, including the DISCARD
5862

5963
# 5. Autonomous variant ----------------------------------------------------
6064
# No approval gate; generous exploration; hard budgets. Run it, walk away.

0 commit comments

Comments
 (0)