diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5813609..b5c77a3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,6 +6,7 @@ on:
pull_request:
branches:
- main
+ - next
jobs:
lint:
@@ -34,3 +35,4 @@ jobs:
- name: Run lints
run: ./scripts/lint
+
diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml
new file mode 100644
index 0000000..58107af
--- /dev/null
+++ b/.github/workflows/create-releases.yml
@@ -0,0 +1,47 @@
+name: Create releases
+on:
+ schedule:
+ - cron: '0 5 * * *' # every day at 5am UTC
+ push:
+ branches:
+ - main
+
+jobs:
+ release:
+ name: release
+ if: github.ref == 'refs/heads/main' && github.repository == 'openlayer-ai/openlayer-java'
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: stainless-api/trigger-release-please@v1
+ id: release
+ with:
+ repo: ${{ github.event.repository.full_name }}
+ stainless-api-key: ${{ secrets.STAINLESS_API_KEY }}
+
+ - name: Set up Java
+ if: ${{ steps.release.outputs.releases_created }}
+ uses: actions/setup-java@v3
+ with:
+ distribution: temurin
+ java-version: |
+ 8
+ 17
+ cache: gradle
+
+ - name: Set up Gradle
+ if: ${{ steps.release.outputs.releases_created }}
+ uses: gradle/gradle-build-action@v2
+
+ - name: Publish to Sonatype
+ if: ${{ steps.release.outputs.releases_created }}
+ run: |
+ ./gradlew --parallel --no-daemon publish
+ env:
+ SONATYPE_USERNAME: ${{ secrets.OPENLAYER_SONATYPE_USERNAME || secrets.SONATYPE_USERNAME }}
+ SONATYPE_PASSWORD: ${{ secrets.OPENLAYER_SONATYPE_PASSWORD || secrets.SONATYPE_PASSWORD }}
+ GPG_SIGNING_KEY_ID: ${{ secrets.OPENLAYER_SONATYPE_GPG_SIGNING_KEY_ID || secrets.GPG_SIGNING_KEY_ID }}
+ GPG_SIGNING_KEY: ${{ secrets.OPENLAYER_SONATYPE_GPG_SIGNING_KEY || secrets.GPG_SIGNING_KEY }}
+ GPG_SIGNING_PASSWORD: ${{ secrets.OPENLAYER_SONATYPE_GPG_SIGNING_PASSWORD || secrets.GPG_SIGNING_PASSWORD }}
diff --git a/.github/workflows/handle-release-pr-title-edit.yml b/.github/workflows/handle-release-pr-title-edit.yml
new file mode 100644
index 0000000..ac2a680
--- /dev/null
+++ b/.github/workflows/handle-release-pr-title-edit.yml
@@ -0,0 +1,25 @@
+name: Handle release PR title edits
+on:
+ pull_request:
+ types:
+ - edited
+ - unlabeled
+
+jobs:
+ update_pr_content:
+ name: Update pull request content
+ if: |
+ ((github.event.action == 'edited' && github.event.changes.title.from != github.event.pull_request.title) ||
+ (github.event.action == 'unlabeled' && github.event.label.name == 'autorelease: custom version')) &&
+ startsWith(github.event.pull_request.head.ref, 'release-please--') &&
+ github.event.pull_request.state == 'open' &&
+ github.event.sender.login != 'stainless-bot' &&
+ github.event.sender.login != 'stainless-app' &&
+ github.repository == 'openlayer-ai/openlayer-java'
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: stainless-api/trigger-release-please@v1
+ with:
+ repo: ${{ github.event.repository.full_name }}
+ stainless-api-key: ${{ secrets.STAINLESS_API_KEY }}
diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml
index c09f373..7a3754c 100644
--- a/.github/workflows/release-doctor.yml
+++ b/.github/workflows/release-doctor.yml
@@ -1,6 +1,8 @@
name: Release Doctor
on:
pull_request:
+ branches:
+ - main
workflow_dispatch:
jobs:
diff --git a/.gitignore b/.gitignore
index 1c94d9f..39c31e3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+.prism.log
.gradle
.idea
build
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index ba6c348..f14b480 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.1.0-alpha.1"
+ ".": "0.1.0-alpha.2"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index 2b7dbf3..6a8c142 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1 +1 @@
-configured_endpoints: 6
+configured_endpoints: 13
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9398600..beede32 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,38 @@
# Changelog
+## 0.1.0-alpha.2 (2024-08-15)
+
+Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
+
+### Features
+
+* **api:** OpenAPI spec update via Stainless API ([f3a2e94](https://github.com/openlayer-ai/openlayer-java/commit/f3a2e94096f7065baaf412330b4d82098144a7c6))
+* **api:** OpenAPI spec update via Stainless API ([#13](https://github.com/openlayer-ai/openlayer-java/issues/13)) ([3d51770](https://github.com/openlayer-ai/openlayer-java/commit/3d51770cd80a882159c7bd267ebb4b1f82e1bbf2))
+* **api:** OpenAPI spec update via Stainless API ([#16](https://github.com/openlayer-ai/openlayer-java/issues/16)) ([700e5dd](https://github.com/openlayer-ai/openlayer-java/commit/700e5dd17a46e547f1a2433993bbb4b586ae2159))
+* **api:** OpenAPI spec update via Stainless API ([#22](https://github.com/openlayer-ai/openlayer-java/issues/22)) ([57cd9b9](https://github.com/openlayer-ai/openlayer-java/commit/57cd9b93d5cc5a955a2ca30136e53fcbc0db3fe1))
+* **api:** OpenAPI spec update via Stainless API ([#8](https://github.com/openlayer-ai/openlayer-java/issues/8)) ([8edaa4b](https://github.com/openlayer-ai/openlayer-java/commit/8edaa4b24bf2b90d987ed7f64d2f789016f0f2ef))
+* **api:** OpenAPI spec update via Stainless API ([#9](https://github.com/openlayer-ai/openlayer-java/issues/9)) ([69c5aba](https://github.com/openlayer-ai/openlayer-java/commit/69c5aba6d450e4a924a1ec1bf8f427cd66ba29a0))
+* **api:** update via SDK Studio ([#10](https://github.com/openlayer-ai/openlayer-java/issues/10)) ([75a4d98](https://github.com/openlayer-ai/openlayer-java/commit/75a4d984832a11a4561b7b45ef1667dad6e8bd0a))
+* **api:** update via SDK Studio ([#14](https://github.com/openlayer-ai/openlayer-java/issues/14)) ([b5ecd1c](https://github.com/openlayer-ai/openlayer-java/commit/b5ecd1cffeec8cc90c8fc37eb86d270671adcc73))
+* **api:** update via SDK Studio ([#15](https://github.com/openlayer-ai/openlayer-java/issues/15)) ([ca3563b](https://github.com/openlayer-ai/openlayer-java/commit/ca3563b438c684f30bdc57fe95bd0bee33a0b201))
+* **api:** update via SDK Studio ([#21](https://github.com/openlayer-ai/openlayer-java/issues/21)) ([b3df178](https://github.com/openlayer-ai/openlayer-java/commit/b3df178a8dba68759f3e9146c32ab2b52afa07a4))
+* **api:** update via SDK Studio ([#23](https://github.com/openlayer-ai/openlayer-java/issues/23)) ([656bca9](https://github.com/openlayer-ai/openlayer-java/commit/656bca961e35da983260b1f6e5b3117d97bfebcf))
+* **api:** update via SDK Studio ([#24](https://github.com/openlayer-ai/openlayer-java/issues/24)) ([1166c1b](https://github.com/openlayer-ai/openlayer-java/commit/1166c1beeda0ba4d25c01820cd3646c14555491c))
+* **api:** update via SDK Studio ([#27](https://github.com/openlayer-ai/openlayer-java/issues/27)) ([9ed736f](https://github.com/openlayer-ai/openlayer-java/commit/9ed736f97e978d70402de098e6ba131057e0d080))
+* **api:** update via SDK Studio ([#5](https://github.com/openlayer-ai/openlayer-java/issues/5)) ([f01f468](https://github.com/openlayer-ai/openlayer-java/commit/f01f468c2b6a0521a5f67bf7715d9d1e68eab49c))
+* **api:** update via SDK Studio ([#7](https://github.com/openlayer-ai/openlayer-java/issues/7)) ([8c4398e](https://github.com/openlayer-ai/openlayer-java/commit/8c4398ed39212e1e018729727d7dfbe70a8db27d))
+
+
+### Chores
+
+* **ci:** limit release doctor target branches ([#17](https://github.com/openlayer-ai/openlayer-java/issues/17)) ([ef0d7e9](https://github.com/openlayer-ai/openlayer-java/commit/ef0d7e9c91d7798039e01600b762b13f1f5ada23))
+* go live ([#6](https://github.com/openlayer-ai/openlayer-java/issues/6)) ([30ba342](https://github.com/openlayer-ai/openlayer-java/commit/30ba3429a02384007ec45e95db462a07d6a8e892))
+* **internal:** codegen related update ([#18](https://github.com/openlayer-ai/openlayer-java/issues/18)) ([ff15d61](https://github.com/openlayer-ai/openlayer-java/commit/ff15d6179d277e41ab1910b69e90e49323530e3b))
+* **internal:** refactor release doctor script ([#19](https://github.com/openlayer-ai/openlayer-java/issues/19)) ([6ce88ff](https://github.com/openlayer-ai/openlayer-java/commit/6ce88ff0c6f47bc4ae9d64e97dfedccc98edc5f7))
+* **internal:** restore release-please configuration files ([#26](https://github.com/openlayer-ai/openlayer-java/issues/26)) ([a309673](https://github.com/openlayer-ai/openlayer-java/commit/a309673d5c7e72df8b006156d5458570d251995e))
+* **internal:** version bump ([#3](https://github.com/openlayer-ai/openlayer-java/issues/3)) ([2e46974](https://github.com/openlayer-ai/openlayer-java/commit/2e46974aefcd77a33417b3d675bea14ccb95befd))
+* **tests:** update prism version ([#25](https://github.com/openlayer-ai/openlayer-java/issues/25)) ([67bc5ea](https://github.com/openlayer-ai/openlayer-java/commit/67bc5ea91b7b482e09c8e4ccbbd544185e221a10))
+
## 0.1.0-alpha.1 (2024-06-24)
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/openlayer-ai/openlayer-java/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
diff --git a/README.md b/README.md
index c027e07..da1c440 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[](https://central.sonatype.com/artifact/org.openlayer/openlayer-java/0.1.0-alpha.1)
+[](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.2)
@@ -14,7 +14,7 @@ It is generated with [Stainless](https://www.stainlessapi.com/).
## Documentation
-The REST API documentation can be found [on openlayer.com](https://openlayer.com/docs/api-reference/rest/overview).
+The REST API documentation can be found on [openlayer.com](https://openlayer.com/docs/api-reference/rest/overview).
---
@@ -27,16 +27,16 @@ The REST API documentation can be found [on openlayer.com](https://openlayer.co
```kotlin
-implementation("org.openlayer:openlayer-java:0.1.0-alpha.1")
+implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.2")
```
#### Maven
```xml
- org.openlayer
+ com.openlayer.api
openlayer-java
- 0.1.0-alpha.1
+ 0.1.0-alpha.2
```
@@ -72,9 +72,9 @@ To create a new inference pipeline data, first use the `InferencePipelineDataStr
then pass that to the `stream` method of the `data` service.
```java
+import com.openlayer.api.models.InferencePipelineDataStreamParams;
+import com.openlayer.api.models.InferencePipelineDataStreamResponse;
import java.util.List;
-import org.openlayer.models.InferencePipelineDataStreamParams;
-import org.openlayer.models.InferencePipelineDataStreamResponse;
InferencePipelineDataStreamParams params = InferencePipelineDataStreamParams.builder()
.rows(List.of(InferencePipelineDataStreamParams.Row.builder().build()))
@@ -250,3 +250,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
We are keen for your feedback; please open an [issue](https://www.github.com/openlayer-ai/openlayer-java/issues) with questions, bugs, or suggestions.
+
+## Requirements
+
+This library requires Java 8 or later.
diff --git a/bin/check-release-environment b/bin/check-release-environment
index 6fcdea6..14a9e4d 100644
--- a/bin/check-release-environment
+++ b/bin/check-release-environment
@@ -1,32 +1,21 @@
#!/usr/bin/env bash
-warnings=()
errors=()
if [ -z "${SONATYPE_USERNAME}" ]; then
- warnings+=("The OPENLAYER_SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
+ errors+=("The OPENLAYER_SONATYPE_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
if [ -z "${SONATYPE_PASSWORD}" ]; then
- warnings+=("The OPENLAYER_SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
+ errors+=("The OPENLAYER_SONATYPE_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
if [ -z "${GPG_SIGNING_KEY}" ]; then
- warnings+=("The OPENLAYER_SONATYPE_GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
+ errors+=("The OPENLAYER_SONATYPE_GPG_SIGNING_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
if [ -z "${GPG_SIGNING_PASSWORD}" ]; then
- warnings+=("The OPENLAYER_SONATYPE_GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
-fi
-
-lenWarnings=${#warnings[@]}
-
-if [[ lenWarnings -gt 0 ]]; then
- echo -e "Found the following warnings in the release environment:\n"
-
- for warning in "${warnings[@]}"; do
- echo -e "- $warning\n"
- done
+ errors+=("The OPENLAYER_SONATYPE_GPG_SIGNING_PASSWORD secret has not been set. Please set it in either this repository's secrets or your organization secrets")
fi
lenErrors=${#errors[@]}
diff --git a/build.gradle.kts b/build.gradle.kts
index 4cac40f..0e8d4a4 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -3,8 +3,8 @@ plugins {
}
allprojects {
- group = "org.openlayer"
- version = "0.1.0-alpha.1" // x-release-please-version
+ group = "com.openlayer.api"
+ version = "0.1.0-alpha.2" // x-release-please-version
}
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
similarity index 93%
rename from openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OkHttpClient.kt
rename to openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
index bfa04c9..13779b0 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OkHttpClient.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
@@ -1,7 +1,14 @@
-package org.openlayer.client.okhttp
+package com.openlayer.api.client.okhttp
import com.google.common.collect.ListMultimap
import com.google.common.collect.MultimapBuilder
+import com.openlayer.api.core.RequestOptions
+import com.openlayer.api.core.http.HttpClient
+import com.openlayer.api.core.http.HttpMethod
+import com.openlayer.api.core.http.HttpRequest
+import com.openlayer.api.core.http.HttpRequestBody
+import com.openlayer.api.core.http.HttpResponse
+import com.openlayer.api.errors.OpenlayerIoException
import java.io.IOException
import java.io.InputStream
import java.net.Proxy
@@ -19,13 +26,6 @@ import okhttp3.RequestBody
import okhttp3.RequestBody.Companion.toRequestBody
import okhttp3.Response
import okio.BufferedSink
-import org.openlayer.core.RequestOptions
-import org.openlayer.core.http.HttpClient
-import org.openlayer.core.http.HttpMethod
-import org.openlayer.core.http.HttpRequest
-import org.openlayer.core.http.HttpRequestBody
-import org.openlayer.core.http.HttpResponse
-import org.openlayer.errors.OpenlayerIoException
class OkHttpClient
private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val baseUrl: HttpUrl) :
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
similarity index 93%
rename from openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClient.kt
rename to openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
index ad640c1..1dff803 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClient.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
@@ -1,14 +1,14 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.client.okhttp
+package com.openlayer.api.client.okhttp
import com.fasterxml.jackson.databind.json.JsonMapper
+import com.openlayer.api.client.OpenlayerClient
+import com.openlayer.api.client.OpenlayerClientImpl
+import com.openlayer.api.core.ClientOptions
import java.net.Proxy
import java.time.Clock
import java.time.Duration
-import org.openlayer.client.OpenlayerClient
-import org.openlayer.client.OpenlayerClientImpl
-import org.openlayer.core.ClientOptions
class OpenlayerOkHttpClient private constructor() {
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClientAsync.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
similarity index 93%
rename from openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClientAsync.kt
rename to openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
index 1a33a1c..0866f95 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/org/openlayer/client/okhttp/OpenlayerOkHttpClientAsync.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
@@ -1,14 +1,14 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.client.okhttp
+package com.openlayer.api.client.okhttp
import com.fasterxml.jackson.databind.json.JsonMapper
+import com.openlayer.api.client.OpenlayerClientAsync
+import com.openlayer.api.client.OpenlayerClientAsyncImpl
+import com.openlayer.api.core.ClientOptions
import java.net.Proxy
import java.time.Clock
import java.time.Duration
-import org.openlayer.client.OpenlayerClientAsync
-import org.openlayer.client.OpenlayerClientAsyncImpl
-import org.openlayer.core.ClientOptions
class OpenlayerOkHttpClientAsync private constructor() {
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
similarity index 70%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClient.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
index 916c328..3a24286 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
@@ -2,10 +2,10 @@
@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
-package org.openlayer.client
+package com.openlayer.api.client
-import org.openlayer.models.*
-import org.openlayer.services.blocking.*
+import com.openlayer.api.models.*
+import com.openlayer.api.services.blocking.*
interface OpenlayerClient {
@@ -16,4 +16,6 @@ interface OpenlayerClient {
fun commits(): CommitService
fun inferencePipelines(): InferencePipelineService
+
+ fun storage(): StorageService
}
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
similarity index 70%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsync.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
index 38f2d7e..7d8847c 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsync.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
@@ -2,10 +2,10 @@
@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
-package org.openlayer.client
+package com.openlayer.api.client
-import org.openlayer.models.*
-import org.openlayer.services.async.*
+import com.openlayer.api.models.*
+import com.openlayer.api.services.async.*
interface OpenlayerClientAsync {
@@ -16,4 +16,6 @@ interface OpenlayerClientAsync {
fun commits(): CommitServiceAsync
fun inferencePipelines(): InferencePipelineServiceAsync
+
+ fun storage(): StorageServiceAsync
}
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
similarity index 67%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsyncImpl.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
index 2b4bbce..d3c13ec 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientAsyncImpl.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
@@ -1,13 +1,13 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.client
+package com.openlayer.api.client
-import org.openlayer.core.ClientOptions
-import org.openlayer.core.http.HttpResponse.Handler
-import org.openlayer.errors.OpenlayerError
-import org.openlayer.models.*
-import org.openlayer.services.async.*
-import org.openlayer.services.errorHandler
+import com.openlayer.api.core.ClientOptions
+import com.openlayer.api.core.http.HttpResponse.Handler
+import com.openlayer.api.errors.OpenlayerError
+import com.openlayer.api.models.*
+import com.openlayer.api.services.async.*
+import com.openlayer.api.services.errorHandler
class OpenlayerClientAsyncImpl
constructor(
@@ -26,6 +26,8 @@ constructor(
InferencePipelineServiceAsyncImpl(clientOptions)
}
+ private val storage: StorageServiceAsync by lazy { StorageServiceAsyncImpl(clientOptions) }
+
override fun sync(): OpenlayerClient = sync
override fun projects(): ProjectServiceAsync = projects
@@ -33,4 +35,6 @@ constructor(
override fun commits(): CommitServiceAsync = commits
override fun inferencePipelines(): InferencePipelineServiceAsync = inferencePipelines
+
+ override fun storage(): StorageServiceAsync = storage
}
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
similarity index 67%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientImpl.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
index 7f1a32e..29a6187 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/client/OpenlayerClientImpl.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
@@ -1,13 +1,13 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.client
+package com.openlayer.api.client
-import org.openlayer.core.ClientOptions
-import org.openlayer.core.http.HttpResponse.Handler
-import org.openlayer.errors.OpenlayerError
-import org.openlayer.models.*
-import org.openlayer.services.blocking.*
-import org.openlayer.services.errorHandler
+import com.openlayer.api.core.ClientOptions
+import com.openlayer.api.core.http.HttpResponse.Handler
+import com.openlayer.api.errors.OpenlayerError
+import com.openlayer.api.models.*
+import com.openlayer.api.services.blocking.*
+import com.openlayer.api.services.errorHandler
class OpenlayerClientImpl
constructor(
@@ -26,6 +26,8 @@ constructor(
InferencePipelineServiceImpl(clientOptions)
}
+ private val storage: StorageService by lazy { StorageServiceImpl(clientOptions) }
+
override fun async(): OpenlayerClientAsync = async
override fun projects(): ProjectService = projects
@@ -33,4 +35,6 @@ constructor(
override fun commits(): CommitService = commits
override fun inferencePipelines(): InferencePipelineService = inferencePipelines
+
+ override fun storage(): StorageService = storage
}
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseDeserializer.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseDeserializer.kt
similarity index 98%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseDeserializer.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseDeserializer.kt
index e2344e5..0573e16 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseDeserializer.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseDeserializer.kt
@@ -1,4 +1,4 @@
-package org.openlayer.core
+package com.openlayer.api.core
import com.fasterxml.jackson.core.JsonParser
import com.fasterxml.jackson.core.ObjectCodec
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseSerializer.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseSerializer.kt
similarity index 85%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseSerializer.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseSerializer.kt
index d3031ef..eb87e2c 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/BaseSerializer.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/BaseSerializer.kt
@@ -1,4 +1,4 @@
-package org.openlayer.core
+package com.openlayer.api.core
import com.fasterxml.jackson.databind.ser.std.StdSerializer
import kotlin.reflect.KClass
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/ClientOptions.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
similarity index 97%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/ClientOptions.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
index d3434c8..ed353b4 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/ClientOptions.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
@@ -1,13 +1,13 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.core
+package com.openlayer.api.core
import com.fasterxml.jackson.databind.json.JsonMapper
import com.google.common.collect.ArrayListMultimap
import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.HttpClient
+import com.openlayer.api.core.http.RetryingHttpClient
import java.time.Clock
-import org.openlayer.core.http.HttpClient
-import org.openlayer.core.http.RetryingHttpClient
class ClientOptions
private constructor(
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/ObjectMappers.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ObjectMappers.kt
similarity index 97%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/ObjectMappers.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ObjectMappers.kt
index 5c86b9e..2a22f38 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/ObjectMappers.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ObjectMappers.kt
@@ -1,6 +1,6 @@
@file:JvmName("ObjectMappers")
-package org.openlayer.core
+package com.openlayer.api.core
import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.databind.DeserializationFeature
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Properties.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
similarity index 97%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/Properties.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
index d057b2f..bc0d02a 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Properties.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
@@ -1,6 +1,6 @@
@file:JvmName("Properties")
-package org.openlayer.core
+package com.openlayer.api.core
import java.util.Properties
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/RequestOptions.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/RequestOptions.kt
similarity index 97%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/RequestOptions.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/RequestOptions.kt
index 2afeccc..2b862a3 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/RequestOptions.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/RequestOptions.kt
@@ -1,4 +1,4 @@
-package org.openlayer.core
+package com.openlayer.api.core
import java.time.Duration
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Utils.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
similarity index 93%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/Utils.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
index a7ca7ec..8f46e25 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Utils.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
@@ -1,12 +1,12 @@
@file:JvmName("Utils")
-package org.openlayer.core
+package com.openlayer.api.core
import com.google.common.collect.ImmutableListMultimap
import com.google.common.collect.ListMultimap
import com.google.common.collect.Multimaps
+import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.util.Collections
-import org.openlayer.errors.OpenlayerInvalidDataException
@JvmSynthetic
internal fun T?.getOrThrow(name: String): T {
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Values.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
similarity index 99%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/Values.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
index b89c39b..12b454f 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/Values.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
@@ -1,4 +1,4 @@
-package org.openlayer.core
+package com.openlayer.api.core
import com.fasterxml.jackson.annotation.JacksonAnnotationsInside
import com.fasterxml.jackson.annotation.JsonAutoDetect
@@ -26,11 +26,11 @@ import com.fasterxml.jackson.databind.node.JsonNodeType.OBJECT
import com.fasterxml.jackson.databind.node.JsonNodeType.POJO
import com.fasterxml.jackson.databind.node.JsonNodeType.STRING
import com.fasterxml.jackson.databind.ser.std.NullSerializer
+import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.nio.charset.Charset
import java.util.Objects
import java.util.Optional
import org.apache.hc.core5.http.ContentType
-import org.openlayer.errors.OpenlayerInvalidDataException
@JsonDeserialize(using = JsonField.Deserializer::class)
sealed class JsonField {
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/BinaryResponseContent.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
similarity index 50%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/BinaryResponseContent.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
index 852939a..79dd3d8 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/BinaryResponseContent.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
@@ -1,13 +1,14 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
-import java.io.Closeable
import java.io.IOException
import java.io.InputStream
import java.io.OutputStream
+import java.lang.AutoCloseable
+import java.util.Optional
-interface BinaryResponseContent : Closeable {
+interface BinaryResponseContent : AutoCloseable {
- fun contentType(): String?
+ fun contentType(): Optional
fun body(): InputStream
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
similarity index 69%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpClient.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
index 354581b..e6fb4bc 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
@@ -1,10 +1,10 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
-import java.io.Closeable
+import com.openlayer.api.core.RequestOptions
+import java.lang.AutoCloseable
import java.util.concurrent.CompletableFuture
-import org.openlayer.core.RequestOptions
-interface HttpClient : Closeable {
+interface HttpClient : AutoCloseable {
fun execute(
request: HttpRequest,
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpMethod.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpMethod.kt
similarity index 77%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpMethod.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpMethod.kt
index 53afed9..f029948 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpMethod.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpMethod.kt
@@ -1,4 +1,4 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
enum class HttpMethod {
GET,
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequest.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
similarity index 97%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequest.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
index 3f30a60..243c19a 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequest.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
@@ -1,10 +1,10 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
import com.google.common.collect.ArrayListMultimap
import com.google.common.collect.ListMultimap
import com.google.common.collect.Multimap
import com.google.common.collect.MultimapBuilder
-import org.openlayer.core.toUnmodifiable
+import com.openlayer.api.core.toUnmodifiable
class HttpRequest
private constructor(
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequestBody.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequestBody.kt
similarity index 83%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequestBody.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequestBody.kt
index e85338d..32b5f81 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpRequestBody.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequestBody.kt
@@ -1,10 +1,10 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
-import java.io.Closeable
import java.io.IOException
import java.io.OutputStream
+import java.lang.AutoCloseable
-interface HttpRequestBody : Closeable {
+interface HttpRequestBody : AutoCloseable {
@Throws(IOException::class) fun writeTo(outputStream: OutputStream)
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
similarity index 70%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpResponse.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
index 8f50461..5c5f3ce 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/HttpResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
@@ -1,10 +1,10 @@
-package org.openlayer.core.http
+package com.openlayer.api.core.http
import com.google.common.collect.ListMultimap
-import java.io.Closeable
import java.io.InputStream
+import java.lang.AutoCloseable
-interface HttpResponse : Closeable {
+interface HttpResponse : AutoCloseable {
fun statusCode(): Int
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/RetryingHttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
similarity index 98%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/core/http/RetryingHttpClient.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
index 4f33c10..a90d6f4 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/core/http/RetryingHttpClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
@@ -1,8 +1,10 @@
@file:JvmSynthetic
-package org.openlayer.core.http
+package com.openlayer.api.core.http
import com.google.common.util.concurrent.MoreExecutors
+import com.openlayer.api.core.RequestOptions
+import com.openlayer.api.errors.OpenlayerIoException
import java.io.IOException
import java.time.Clock
import java.time.Duration
@@ -19,8 +21,6 @@ import java.util.concurrent.TimeUnit
import java.util.function.Function
import kotlin.math.min
import kotlin.math.pow
-import org.openlayer.core.RequestOptions
-import org.openlayer.errors.OpenlayerIoException
class RetryingHttpClient
private constructor(
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/BadRequestException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/BadRequestException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
index 0e7c4a5..f51b5d2 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/BadRequestException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/InternalServerException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
similarity index 91%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/InternalServerException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
index fab7f30..b0c6a67 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/InternalServerException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/NotFoundException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/NotFoundException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
index eaf39a8..9efe856 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/NotFoundException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerError.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
similarity index 92%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerError.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
index 0edb21a..59250fe 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerError.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
@@ -1,14 +1,14 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.toUnmodifiable
import java.util.Objects
-import org.openlayer.core.JsonValue
-import org.openlayer.core.NoAutoDetect
-import org.openlayer.core.toUnmodifiable
@JsonDeserialize(builder = OpenlayerError.Builder::class)
@NoAutoDetect
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerException.kt
similarity index 81%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerException.kt
index 29dd500..741adba 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
open class OpenlayerException
@JvmOverloads
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerInvalidDataException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerInvalidDataException.kt
similarity index 82%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerInvalidDataException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerInvalidDataException.kt
index aaaaa7f..e576549 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerInvalidDataException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerInvalidDataException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
class OpenlayerInvalidDataException
@JvmOverloads
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerIoException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerIoException.kt
similarity index 81%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerIoException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerIoException.kt
index 4cefedf..23217df 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerIoException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerIoException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
class OpenlayerIoException
@JvmOverloads
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerServiceException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
similarity index 91%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerServiceException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
index 39024b5..916e4ed 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/OpenlayerServiceException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/PermissionDeniedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/PermissionDeniedException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
index 88acfb1..cc7f0d6 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/PermissionDeniedException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/RateLimitException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/RateLimitException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
index 3abc49b..5b83fd0 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/RateLimitException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnauthorizedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnauthorizedException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
index 8e5ea1d..f0e8f0f 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnauthorizedException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnexpectedStatusCodeException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
similarity index 91%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnexpectedStatusCodeException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
index 083edeb..30e8d3a 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnexpectedStatusCodeException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnprocessableEntityException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnprocessableEntityException.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
index 32c5117..87dba98 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/errors/UnprocessableEntityException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
@@ -1,4 +1,4 @@
-package org.openlayer.errors
+package com.openlayer.api.errors
import com.google.common.collect.ListMultimap
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
similarity index 90%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListParams.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
index 8f36b3d..6b1c3e4 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
@@ -1,21 +1,21 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.models
+package com.openlayer.api.models
import com.fasterxml.jackson.annotation.JsonCreator
+import com.openlayer.api.core.Enum
+import com.openlayer.api.core.JsonField
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.errors.OpenlayerInvalidDataException
+import com.openlayer.api.models.*
import java.util.Objects
import java.util.Optional
-import org.openlayer.core.Enum
-import org.openlayer.core.JsonField
-import org.openlayer.core.JsonValue
-import org.openlayer.core.NoAutoDetect
-import org.openlayer.core.toUnmodifiable
-import org.openlayer.errors.OpenlayerInvalidDataException
-import org.openlayer.models.*
class CommitTestResultListParams
constructor(
- private val id: String,
+ private val projectVersionId: String,
private val includeArchived: Boolean?,
private val page: Long?,
private val perPage: Long?,
@@ -26,7 +26,7 @@ constructor(
private val additionalBodyProperties: Map,
) {
- fun id(): String = id
+ fun projectVersionId(): String = projectVersionId
fun includeArchived(): Optional = Optional.ofNullable(includeArchived)
@@ -54,7 +54,7 @@ constructor(
fun getPathParam(index: Int): String {
return when (index) {
- 0 -> id
+ 0 -> projectVersionId
else -> ""
}
}
@@ -71,7 +71,7 @@ constructor(
}
return other is CommitTestResultListParams &&
- this.id == other.id &&
+ this.projectVersionId == other.projectVersionId &&
this.includeArchived == other.includeArchived &&
this.page == other.page &&
this.perPage == other.perPage &&
@@ -84,7 +84,7 @@ constructor(
override fun hashCode(): Int {
return Objects.hash(
- id,
+ projectVersionId,
includeArchived,
page,
perPage,
@@ -97,7 +97,7 @@ constructor(
}
override fun toString() =
- "CommitTestResultListParams{id=$id, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "CommitTestResultListParams{projectVersionId=$projectVersionId, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
@@ -109,7 +109,7 @@ constructor(
@NoAutoDetect
class Builder {
- private var id: String? = null
+ private var projectVersionId: String? = null
private var includeArchived: Boolean? = null
private var page: Long? = null
private var perPage: Long? = null
@@ -121,7 +121,7 @@ constructor(
@JvmSynthetic
internal fun from(commitTestResultListParams: CommitTestResultListParams) = apply {
- this.id = commitTestResultListParams.id
+ this.projectVersionId = commitTestResultListParams.projectVersionId
this.includeArchived = commitTestResultListParams.includeArchived
this.page = commitTestResultListParams.page
this.perPage = commitTestResultListParams.perPage
@@ -132,7 +132,9 @@ constructor(
additionalBodyProperties(commitTestResultListParams.additionalBodyProperties)
}
- fun id(id: String) = apply { this.id = id }
+ fun projectVersionId(projectVersionId: String) = apply {
+ this.projectVersionId = projectVersionId
+ }
/** Include archived goals. */
fun includeArchived(includeArchived: Boolean) = apply {
@@ -213,7 +215,7 @@ constructor(
fun build(): CommitTestResultListParams =
CommitTestResultListParams(
- checkNotNull(id) { "`id` is required but was not set" },
+ checkNotNull(projectVersionId) { "`projectVersionId` is required but was not set" },
includeArchived,
page,
perPage,
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
similarity index 99%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListResponse.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
index 04127f0..731f3b5 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/models/CommitTestResultListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
@@ -1,6 +1,6 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.models
+package com.openlayer.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
@@ -13,20 +13,20 @@ import com.fasterxml.jackson.databind.SerializerProvider
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.fasterxml.jackson.databind.annotation.JsonSerialize
import com.fasterxml.jackson.module.kotlin.jacksonTypeRef
+import com.openlayer.api.core.BaseDeserializer
+import com.openlayer.api.core.BaseSerializer
+import com.openlayer.api.core.Enum
+import com.openlayer.api.core.ExcludeMissing
+import com.openlayer.api.core.JsonField
+import com.openlayer.api.core.JsonMissing
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.getOrThrow
+import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.time.OffsetDateTime
import java.util.Objects
import java.util.Optional
-import org.openlayer.core.BaseDeserializer
-import org.openlayer.core.BaseSerializer
-import org.openlayer.core.Enum
-import org.openlayer.core.ExcludeMissing
-import org.openlayer.core.JsonField
-import org.openlayer.core.JsonMissing
-import org.openlayer.core.JsonValue
-import org.openlayer.core.NoAutoDetect
-import org.openlayer.core.getOrThrow
-import org.openlayer.core.toUnmodifiable
-import org.openlayer.errors.OpenlayerInvalidDataException
@JsonDeserialize(builder = CommitTestResultListResponse.Builder::class)
@NoAutoDetect
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
similarity index 98%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamParams.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
index 759d243..62d6be9 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
@@ -1,6 +1,6 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.models
+package com.openlayer.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
@@ -12,23 +12,23 @@ import com.fasterxml.jackson.databind.SerializerProvider
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.fasterxml.jackson.databind.annotation.JsonSerialize
import com.fasterxml.jackson.module.kotlin.jacksonTypeRef
+import com.openlayer.api.core.BaseDeserializer
+import com.openlayer.api.core.BaseSerializer
+import com.openlayer.api.core.ExcludeMissing
+import com.openlayer.api.core.JsonField
+import com.openlayer.api.core.JsonMissing
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.getOrThrow
+import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.errors.OpenlayerInvalidDataException
+import com.openlayer.api.models.*
import java.util.Objects
import java.util.Optional
-import org.openlayer.core.BaseDeserializer
-import org.openlayer.core.BaseSerializer
-import org.openlayer.core.ExcludeMissing
-import org.openlayer.core.JsonField
-import org.openlayer.core.JsonMissing
-import org.openlayer.core.JsonValue
-import org.openlayer.core.NoAutoDetect
-import org.openlayer.core.getOrThrow
-import org.openlayer.core.toUnmodifiable
-import org.openlayer.errors.OpenlayerInvalidDataException
-import org.openlayer.models.*
class InferencePipelineDataStreamParams
constructor(
- private val id: String,
+ private val inferencePipelineId: String,
private val config: Config,
private val rows: List,
private val additionalQueryParams: Map>,
@@ -36,7 +36,7 @@ constructor(
private val additionalBodyProperties: Map,
) {
- fun id(): String = id
+ fun inferencePipelineId(): String = inferencePipelineId
fun config(): Config = config
@@ -57,7 +57,7 @@ constructor(
fun getPathParam(index: Int): String {
return when (index) {
- 0 -> id
+ 0 -> inferencePipelineId
else -> ""
}
}
@@ -76,7 +76,7 @@ constructor(
/** Configuration for the data stream. Depends on your **Openlayer project task type**. */
@JsonProperty("config") fun config(): Config? = config
- /** A list of entries that represent rows of a csv file */
+ /** A list of inference data points with inputs and outputs */
@JsonProperty("rows") fun rows(): List? = rows
@JsonAnyGetter
@@ -135,7 +135,7 @@ constructor(
*/
@JsonProperty("config") fun config(config: Config) = apply { this.config = config }
- /** A list of entries that represent rows of a csv file */
+ /** A list of inference data points with inputs and outputs */
@JsonProperty("rows") fun rows(rows: List) = apply { this.rows = rows }
fun additionalProperties(additionalProperties: Map) = apply {
@@ -173,7 +173,7 @@ constructor(
}
return other is InferencePipelineDataStreamParams &&
- this.id == other.id &&
+ this.inferencePipelineId == other.inferencePipelineId &&
this.config == other.config &&
this.rows == other.rows &&
this.additionalQueryParams == other.additionalQueryParams &&
@@ -183,7 +183,7 @@ constructor(
override fun hashCode(): Int {
return Objects.hash(
- id,
+ inferencePipelineId,
config,
rows,
additionalQueryParams,
@@ -193,7 +193,7 @@ constructor(
}
override fun toString() =
- "InferencePipelineDataStreamParams{id=$id, config=$config, rows=$rows, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "InferencePipelineDataStreamParams{inferencePipelineId=$inferencePipelineId, config=$config, rows=$rows, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
@@ -205,7 +205,7 @@ constructor(
@NoAutoDetect
class Builder {
- private var id: String? = null
+ private var inferencePipelineId: String? = null
private var config: Config? = null
private var rows: MutableList = mutableListOf()
private var additionalQueryParams: MutableMap> = mutableMapOf()
@@ -215,7 +215,7 @@ constructor(
@JvmSynthetic
internal fun from(inferencePipelineDataStreamParams: InferencePipelineDataStreamParams) =
apply {
- this.id = inferencePipelineDataStreamParams.id
+ this.inferencePipelineId = inferencePipelineDataStreamParams.inferencePipelineId
this.config = inferencePipelineDataStreamParams.config
this.rows(inferencePipelineDataStreamParams.rows)
additionalQueryParams(inferencePipelineDataStreamParams.additionalQueryParams)
@@ -223,7 +223,9 @@ constructor(
additionalBodyProperties(inferencePipelineDataStreamParams.additionalBodyProperties)
}
- fun id(id: String) = apply { this.id = id }
+ fun inferencePipelineId(inferencePipelineId: String) = apply {
+ this.inferencePipelineId = inferencePipelineId
+ }
/** Configuration for the data stream. Depends on your **Openlayer project task type**. */
fun config(config: Config) = apply { this.config = config }
@@ -246,13 +248,13 @@ constructor(
this.config = Config.ofTextClassificationData(textClassificationData)
}
- /** A list of entries that represent rows of a csv file */
+ /** A list of inference data points with inputs and outputs */
fun rows(rows: List) = apply {
this.rows.clear()
this.rows.addAll(rows)
}
- /** A list of entries that represent rows of a csv file */
+ /** A list of inference data points with inputs and outputs */
fun addRow(row: Row) = apply { this.rows.add(row) }
fun additionalQueryParams(additionalQueryParams: Map>) = apply {
@@ -311,7 +313,9 @@ constructor(
fun build(): InferencePipelineDataStreamParams =
InferencePipelineDataStreamParams(
- checkNotNull(id) { "`id` is required but was not set" },
+ checkNotNull(inferencePipelineId) {
+ "`inferencePipelineId` is required but was not set"
+ },
checkNotNull(config) { "`config` is required but was not set" },
checkNotNull(rows) { "`rows` is required but was not set" }.toUnmodifiable(),
additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
@@ -1095,7 +1099,7 @@ constructor(
/**
* Array with the names of all categorical features in the dataset. E.g.
- * ["Gender", "Geography"].
+ * ["Age", "Geography"].
*/
fun categoricalFeatureNames(): Optional> =
Optional.ofNullable(categoricalFeatureNames.getNullable("categoricalFeatureNames"))
@@ -1149,7 +1153,7 @@ constructor(
/**
* Array with the names of all categorical features in the dataset. E.g.
- * ["Gender", "Geography"].
+ * ["Age", "Geography"].
*/
@JsonProperty("categoricalFeatureNames")
@ExcludeMissing
@@ -1308,14 +1312,14 @@ constructor(
/**
* Array with the names of all categorical features in the dataset. E.g.
- * ["Gender", "Geography"].
+ * ["Age", "Geography"].
*/
fun categoricalFeatureNames(categoricalFeatureNames: List) =
categoricalFeatureNames(JsonField.of(categoricalFeatureNames))
/**
* Array with the names of all categorical features in the dataset. E.g.
- * ["Gender", "Geography"].
+ * ["Age", "Geography"].
*/
@JsonProperty("categoricalFeatureNames")
@ExcludeMissing
diff --git a/openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
similarity index 92%
rename from openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamResponse.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
index 3ecfc52..087ceda 100644
--- a/openlayer-java-core/src/main/kotlin/org/openlayer/models/InferencePipelineDataStreamResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
@@ -1,21 +1,21 @@
// File generated from our OpenAPI spec by Stainless.
-package org.openlayer.models
+package com.openlayer.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
+import com.openlayer.api.core.Enum
+import com.openlayer.api.core.ExcludeMissing
+import com.openlayer.api.core.JsonField
+import com.openlayer.api.core.JsonMissing
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.util.Objects
-import org.openlayer.core.Enum
-import org.openlayer.core.ExcludeMissing
-import org.openlayer.core.JsonField
-import org.openlayer.core.JsonMissing
-import org.openlayer.core.JsonValue
-import org.openlayer.core.NoAutoDetect
-import org.openlayer.core.toUnmodifiable
-import org.openlayer.errors.OpenlayerInvalidDataException
@JsonDeserialize(builder = InferencePipelineDataStreamResponse.Builder::class)
@NoAutoDetect
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
new file mode 100644
index 0000000..623bef1
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
@@ -0,0 +1,159 @@
+// File generated from our OpenAPI spec by Stainless.
+
+package com.openlayer.api.models
+
+import com.openlayer.api.core.JsonValue
+import com.openlayer.api.core.NoAutoDetect
+import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.models.*
+import java.util.Objects
+import java.util.Optional
+
+class InferencePipelineDeleteParams
+constructor(
+ private val inferencePipelineId: String,
+ private val additionalQueryParams: Map>,
+ private val additionalHeaders: Map>,
+ private val additionalBodyProperties: Map,
+) {
+
+ fun inferencePipelineId(): String = inferencePipelineId
+
+ @JvmSynthetic
+ internal fun getBody(): Optional