Skip to content

Commit 281eb9e

Browse files
feat(api): OpenAPI spec update via Stainless API (#16)
1 parent 024a4ae commit 281eb9e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsync.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import java.util.concurrent.CompletableFuture
1111

1212
interface DataServiceAsync {
1313

14-
/** Create an inference data point in an inference pipeline. */
14+
/** Publish an inference data point to an inference pipeline. */
1515
@JvmOverloads
1616
fun stream(
1717
params: InferencePipelineDataStreamParams,

openlayer-java-core/src/main/kotlin/com/openlayer/api/services/async/inferencePipelines/DataServiceAsyncImpl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ constructor(
2727
jsonHandler<InferencePipelineDataStreamResponse>(clientOptions.jsonMapper)
2828
.withErrorHandler(errorHandler)
2929

30-
/** Create an inference data point in an inference pipeline. */
30+
/** Publish an inference data point to an inference pipeline. */
3131
override fun stream(
3232
params: InferencePipelineDataStreamParams,
3333
requestOptions: RequestOptions

openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataService.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import com.openlayer.api.models.InferencePipelineDataStreamResponse
1010

1111
interface DataService {
1212

13-
/** Create an inference data point in an inference pipeline. */
13+
/** Publish an inference data point to an inference pipeline. */
1414
@JvmOverloads
1515
fun stream(
1616
params: InferencePipelineDataStreamParams,

openlayer-java-core/src/main/kotlin/com/openlayer/api/services/blocking/inferencePipelines/DataServiceImpl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ constructor(
2626
jsonHandler<InferencePipelineDataStreamResponse>(clientOptions.jsonMapper)
2727
.withErrorHandler(errorHandler)
2828

29-
/** Create an inference data point in an inference pipeline. */
29+
/** Publish an inference data point to an inference pipeline. */
3030
override fun stream(
3131
params: InferencePipelineDataStreamParams,
3232
requestOptions: RequestOptions

0 commit comments

Comments
 (0)