Skip to content

Commit 8955678

Browse files
Apply suggestions from code review
Co-authored-by: Isabel Zimmerman <54685329+isabelizimm@users.noreply.github.com>
1 parent 878bc37 commit 8955678

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ python -m pip install git+https://github.com/rstudio/vetiver-python
3535
A `VetiverModel()` object collects the information needed to store, version, and deploy a trained model.
3636

3737
```python
38-
from vetiver import mock, VetiverModel, VetiverAPI
38+
from vetiver import mock, VetiverModel
3939

4040
X, y = mock.get_mock_data()
4141
model = mock.get_mock_model().fit(X, y)
@@ -53,7 +53,7 @@ model_board = board_temp(versioned = True, allow_pickle_read = True)
5353
vetiver_pin_write(model_board, v)
5454
```
5555

56-
You can **deploy** your pinned `VetiverModel()` via [FastAPI](https://fastapi.tiangolo.com/).
56+
You can **deploy** your pinned `VetiverModel()` using `VetiverAPI()`, an extension of [FastAPI](https://fastapi.tiangolo.com/).
5757

5858
```python
5959
from vetiver import VetiverAPI

0 commit comments

Comments
 (0)