File tree 4 files changed +8
-8
lines changed
openlayer-java-core/src/main/kotlin/com/openlayer/api/services
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ interface ProjectServiceAsync {
19
19
20
20
fun inferencePipelines (): InferencePipelineServiceAsync
21
21
22
- /* * Create a project under the current workspace. */
22
+ /* * Create a project in your workspace. */
23
23
@JvmOverloads
24
24
fun create (
25
25
params : ProjectCreateParams ,
26
26
requestOptions : RequestOptions = RequestOptions .none()
27
27
): CompletableFuture <ProjectCreateResponse >
28
28
29
- /* * List the projects in a user 's workspace . */
29
+ /* * List your workspace 's projects . */
30
30
@JvmOverloads
31
31
fun list (
32
32
params : ProjectListParams ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ constructor(
42
42
private val createHandler: Handler <ProjectCreateResponse > =
43
43
jsonHandler<ProjectCreateResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
44
44
45
- /* * Create a project under the current workspace. */
45
+ /* * Create a project in your workspace. */
46
46
override fun create (
47
47
params : ProjectCreateParams ,
48
48
requestOptions : RequestOptions
@@ -72,7 +72,7 @@ constructor(
72
72
private val listHandler: Handler <ProjectListResponse > =
73
73
jsonHandler<ProjectListResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
74
74
75
- /* * List the projects in a user 's workspace . */
75
+ /* * List your workspace 's projects . */
76
76
override fun list (
77
77
params : ProjectListParams ,
78
78
requestOptions : RequestOptions
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ interface ProjectService {
18
18
19
19
fun inferencePipelines (): InferencePipelineService
20
20
21
- /* * Create a project under the current workspace. */
21
+ /* * Create a project in your workspace. */
22
22
@JvmOverloads
23
23
fun create (
24
24
params : ProjectCreateParams ,
25
25
requestOptions : RequestOptions = RequestOptions .none()
26
26
): ProjectCreateResponse
27
27
28
- /* * List the projects in a user 's workspace . */
28
+ /* * List your workspace 's projects . */
29
29
@JvmOverloads
30
30
fun list (
31
31
params : ProjectListParams ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ constructor(
41
41
private val createHandler: Handler <ProjectCreateResponse > =
42
42
jsonHandler<ProjectCreateResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
43
43
44
- /* * Create a project under the current workspace. */
44
+ /* * Create a project in your workspace. */
45
45
override fun create (
46
46
params : ProjectCreateParams ,
47
47
requestOptions : RequestOptions
@@ -70,7 +70,7 @@ constructor(
70
70
private val listHandler: Handler <ProjectListResponse > =
71
71
jsonHandler<ProjectListResponse >(clientOptions.jsonMapper).withErrorHandler(errorHandler)
72
72
73
- /* * List the projects in a user 's workspace . */
73
+ /* * List your workspace 's projects . */
74
74
override fun list (
75
75
params : ProjectListParams ,
76
76
requestOptions : RequestOptions
You can’t perform that action at this time.
0 commit comments