Skip to content

Commit 9b8ccb9

Browse files
committed
Update README.md
1 parent c906952 commit 9b8ccb9

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ def test_models(make_group, make_model, make_registered_model_permissions):
10651065
)
10661066
```
10671067

1068-
See also [`make_serving_endpoint`](#make_serving_endpoint-fixture), [`ws`](#ws-fixture), [`make_random`](#make_random-fixture), [`watchdog_remove_after`](#watchdog_remove_after-fixture).
1068+
See also [`ws`](#ws-fixture), [`make_random`](#make_random-fixture), [`watchdog_remove_after`](#watchdog_remove_after-fixture).
10691069

10701070

10711071
[[back to top](#python-testing-for-databricks)]
@@ -1204,6 +1204,13 @@ The function returns a [`ServingEndpointDetailed`](https://databricks-sdk-py.rea
12041204

12051205
Under the covers, this fixture also creates a model to serve on a small workload size.
12061206

1207+
Keyword arguments:
1208+
* `endpoint_name` (str, optional): The name of the endpoint. Defaults to `dummy-*`.
1209+
* `model_name` (str, optional): The name of the model to serve on the endpoint.
1210+
Defaults to system model `system.ai.llama_v3_2_1b_instruct`.
1211+
* `model_version` (str, optional): The model version to serve. If None, tries to get the latest version for
1212+
workspace local models. Otherwise, defaults to version `1`.
1213+
12071214
Usage:
12081215
```python
12091216
def test_endpoints(make_group, make_serving_endpoint, make_serving_endpoint_permissions):
@@ -1216,7 +1223,7 @@ def test_endpoints(make_group, make_serving_endpoint, make_serving_endpoint_perm
12161223
)
12171224
```
12181225

1219-
See also [`ws`](#ws-fixture), [`make_random`](#make_random-fixture), [`make_model`](#make_model-fixture), [`watchdog_remove_after`](#watchdog_remove_after-fixture).
1226+
See also [`ws`](#ws-fixture), [`make_random`](#make_random-fixture), [`watchdog_remove_after`](#watchdog_remove_after-fixture).
12201227

12211228

12221229
[[back to top](#python-testing-for-databricks)]

0 commit comments

Comments
 (0)