File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
openlayer-java-core/src/main/kotlin/com/openlayer/api/services Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ interface ProjectServiceAsync {
1919
2020 fun inferencePipelines (): InferencePipelineServiceAsync
2121
22- /* * Create a project under the current workspace. */
22+ /* * Create a project in your workspace. */
2323 @JvmOverloads
2424 fun create (
2525 params : ProjectCreateParams ,
2626 requestOptions : RequestOptions = RequestOptions .none()
2727 ): CompletableFuture <ProjectCreateResponse >
2828
29- /* * List the projects in a user 's workspace . */
29+ /* * List your workspace 's projects . */
3030 @JvmOverloads
3131 fun list (
3232 params : ProjectListParams ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ constructor(
4242 private val createHandler: Handler <ProjectCreateResponse > =
4343 jsonHandler<ProjectCreateResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
4444
45- /* * Create a project under the current workspace. */
45+ /* * Create a project in your workspace. */
4646 override fun create (
4747 params : ProjectCreateParams ,
4848 requestOptions : RequestOptions
@@ -72,7 +72,7 @@ constructor(
7272 private val listHandler: Handler <ProjectListResponse > =
7373 jsonHandler<ProjectListResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
7474
75- /* * List the projects in a user 's workspace . */
75+ /* * List your workspace 's projects . */
7676 override fun list (
7777 params : ProjectListParams ,
7878 requestOptions : RequestOptions
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ interface ProjectService {
1818
1919 fun inferencePipelines (): InferencePipelineService
2020
21- /* * Create a project under the current workspace. */
21+ /* * Create a project in your workspace. */
2222 @JvmOverloads
2323 fun create (
2424 params : ProjectCreateParams ,
2525 requestOptions : RequestOptions = RequestOptions .none()
2626 ): ProjectCreateResponse
2727
28- /* * List the projects in a user 's workspace . */
28+ /* * List your workspace 's projects . */
2929 @JvmOverloads
3030 fun list (
3131 params : ProjectListParams ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ constructor(
4141 private val createHandler: Handler <ProjectCreateResponse > =
4242 jsonHandler<ProjectCreateResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
4343
44- /* * Create a project under the current workspace. */
44+ /* * Create a project in your workspace. */
4545 override fun create (
4646 params : ProjectCreateParams ,
4747 requestOptions : RequestOptions
@@ -70,7 +70,7 @@ constructor(
7070 private val listHandler: Handler <ProjectListResponse > =
7171 jsonHandler<ProjectListResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
7272
73- /* * List the projects in a user 's workspace . */
73+ /* * List your workspace 's projects . */
7474 override fun list (
7575 params : ProjectListParams ,
7676 requestOptions : RequestOptions
You can’t perform that action at this time.
0 commit comments