Skip to content

Commit

Permalink
chore: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Jun 27, 2024
1 parent ea0ad13 commit 93c430f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion argilla/docs/how_to_guides/migrate_from_legacy_datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ The guide will take you through three steps:

### Step 1: Retrieve the legacy dataset

Connect to the Argilla V1 server via the new `argilla` package. The new sdk contains a `v1` module that allows you to connect to the Argilla V1 server:
Connect to the Argilla V1 server via the new `argilla` package. First, you should install an extra dependency:
```bash
pip install "argilla[v1]"
```

Now, you can use the `v1` module to connect to the Argilla V1 server.
```python
import argilla.v1 as rg_v1

Expand Down

0 comments on commit 93c430f

Please sign in to comment.