You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/reference/development.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ To use these methods, you must have:
15
15
16
16
2. Created a project, using :obj:`openlayer.OpenlayerClient.create_project`
17
17
18
-
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
18
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
Copy file name to clipboardExpand all lines: examples/monitoring/llms/monitoring-llms.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
"\n",
11
11
"# <a id=\"top\">Monitoring LLMs</a>\n",
12
12
"\n",
13
-
"This notebook illustrates a typical monitoring flow for LLMs using Openlayer. For more details, refer to the [How to set up monitoring guide](https://docs.openlayer.com/documentation/how-to-guides/set-up-monitoring) from the documentation.\n",
13
+
"This notebook illustrates a typical monitoring flow for LLMs using Openlayer. For more details, refer to the [How to set up monitoring guide](https://docs.openlayer.com/docs/how-to-guides/set-up-monitoring) from the documentation.\n",
Copy file name to clipboardExpand all lines: openlayer/projects.py
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ def add_model(
47
47
This is the method for every model upload, regardless of whether you want to add a shell model,
48
48
a full model, or a direct-to-API model (for LLMs-only).
49
49
50
-
Refer to the `Knowledge base guide on model upload <https://docs.openlayer.com/knowledge-base/development/versioning#adding-models>`_ to
50
+
Refer to the `Knowledge base guide on model upload <https://docs.openlayer.com/docs/knowledge-base/development/versioning#adding-models>`_ to
51
51
learn more about the differences between these options.
52
52
53
53
Parameters
@@ -59,7 +59,7 @@ def add_model(
59
59
.. admonition:: What's in the model config dict?
60
60
61
61
The model configuration depends on the project's :obj:`tasks.TaskType`.
62
-
Refer to the `How to write model configs <https://docs.openlayer.com/documentation/how-to-guides/write-model-configs>`_
62
+
Refer to the `How to write model configs <https://docs.openlayer.com/docs/how-to-guides/write-model-configs>`_
63
63
guide for details.
64
64
65
65
model_config_file_path : str
@@ -69,7 +69,7 @@ def add_model(
69
69
.. admonition:: What's in the model config file?
70
70
71
71
The model configuration YAML depends on the project's :obj:`tasks.TaskType`.
72
-
Refer to the `How to write model configs <https://docs.openlayer.com/documentation/how-to-guides/write-model-configs>`_
72
+
Refer to the `How to write model configs <https://docs.openlayer.com/docs/how-to-guides/write-model-configs>`_
73
73
guide for details.
74
74
75
75
model_package_dir : str, default None
@@ -108,7 +108,7 @@ def add_model(
108
108
109
109
Examples
110
110
--------
111
-
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
111
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
112
112
113
113
First, instantiate the client:
114
114
@@ -158,7 +158,7 @@ def add_model(
158
158
.. admonition:: What's in the model config?
159
159
160
160
The model configuration depends on the project's :obj:`tasks.TaskType`.
161
-
Refer to the `How to write model configs guides <https://docs.openlayer.com/documentation/how-to-guides/write-model-configs>`_
161
+
Refer to the `How to write model configs guides <https://docs.openlayer.com/docs/how-to-guides/write-model-configs>`_
162
162
for details.
163
163
164
164
Then, you can add the model to the project with:
@@ -225,7 +225,7 @@ def add_dataset(
225
225
.. admonition:: What's in the dataset config?
226
226
227
227
The dataset configuration depends on the project's :obj:`tasks.TaskType`.
228
-
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/documentation/how-to-guides/write-dataset-configs>`_
228
+
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/docs/how-to-guides/write-dataset-configs>`_
229
229
for details.
230
230
231
231
dataset_config_file_path : str
@@ -235,7 +235,7 @@ def add_dataset(
235
235
.. admonition:: What's in the dataset config file?
236
236
237
237
The dataset configuration YAML depends on the project's :obj:`tasks.TaskType`.
238
-
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/documentation/how-to-guides/write-dataset-configs>`_
238
+
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/docs/how-to-guides/write-dataset-configs>`_
239
239
for details.
240
240
241
241
force : bool
@@ -251,7 +251,7 @@ def add_dataset(
251
251
252
252
Examples
253
253
--------
254
-
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
254
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
255
255
256
256
First, instantiate the client:
257
257
@@ -296,7 +296,7 @@ def add_dataset(
296
296
.. admonition:: What's in the dataset config?
297
297
298
298
The dataset configuration depends on the project's :obj:`tasks.TaskType`.
299
-
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/documentation/how-to-guides/write-dataset-configs>`_
299
+
Refer to the `How to write dataset configs guides <https://docs.openlayer.com/docs/how-to-guides/write-dataset-configs>`_
300
300
for details.
301
301
302
302
You can now add this dataset to your project with:
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
363
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
451
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
452
452
453
453
A commit message is associated with a project version. The commit message is
454
454
supposed to be a short description of the changes made from one version to
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
488
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
489
489
490
490
Let's say you have a project with a model and a dataset staged and committed.
491
491
You can confirm these resources are indeed in the staging area using the
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
544
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
545
545
546
546
You can use the :obj:`status` method to check the state of the staging area.
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/documentation/how-to-guides/upload-datasets-and-models>`_.
579
+
**Related guide**: `How to upload datasets and models for development <https://docs.openlayer.com/docs/how-to-guides/upload-datasets-and-models>`_.
580
580
581
581
Let's say you have initially used the :obj:`add_model` method to add a model to the
0 commit comments