feat(api): api update

This commit is contained in:
stainless-app[bot]
2025-12-09 17:32:04 +00:00
parent a41c2258f1
commit d016cb8b9c
4 changed files with 57 additions and 11 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
configured_endpoints: 100
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/langsmith%2Flangsmith-api-54d079b2422d1b12fcfd4746e3f8400be717b375e3d7048a538d4a1a754e818d.yml
openapi_spec_hash: b0c345caf490cd80669824f34ad12987
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/langsmith%2Flangsmith-api-dbeb0274f14fb9a4cd199c031eae32799c1d1d8baba4e91ea6a58e2bd3e53009.yml
openapi_spec_hash: a02dc2ee0d10ba3d3385de55aff3b13b
config_hash: 4c81a93850b2f9805605749a196ed2df
@@ -39,7 +39,11 @@ private constructor(
fun _manifest(): JsonValue = body._manifest()
/**
* Configuration for a Runnable.
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*
* @throws LangChainInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -370,7 +374,13 @@ private constructor(
fun manifest(manifest: JsonValue) = apply { body.manifest(manifest) }
/** Configuration for a Runnable. */
/**
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*/
fun options(options: RunnableConfig) = apply { body.options(options) }
/**
@@ -951,7 +961,11 @@ private constructor(
@JsonProperty("manifest") @ExcludeMissing fun _manifest(): JsonValue = manifest
/**
* Configuration for a Runnable.
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*
* @throws LangChainInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -1330,7 +1344,13 @@ private constructor(
fun manifest(manifest: JsonValue) = apply { this.manifest = manifest }
/** Configuration for a Runnable. */
/**
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*/
fun options(options: RunnableConfig) = options(JsonField.of(options))
/**
@@ -39,7 +39,11 @@ private constructor(
fun _manifest(): JsonValue = body._manifest()
/**
* Configuration for a Runnable.
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*
* @throws LangChainInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -357,7 +361,13 @@ private constructor(
fun manifest(manifest: JsonValue) = apply { body.manifest(manifest) }
/** Configuration for a Runnable. */
/**
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*/
fun options(options: RunnableConfig) = apply { body.options(options) }
/**
@@ -913,7 +923,11 @@ private constructor(
@JsonProperty("manifest") @ExcludeMissing fun _manifest(): JsonValue = manifest
/**
* Configuration for a Runnable.
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*
* @throws LangChainInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -1277,7 +1291,13 @@ private constructor(
fun manifest(manifest: JsonValue) = apply { this.manifest = manifest }
/** Configuration for a Runnable. */
/**
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*/
fun options(options: RunnableConfig) = options(JsonField.of(options))
/**
@@ -29,7 +29,13 @@ import java.util.Objects
import java.util.Optional
import kotlin.jvm.optionals.getOrNull
/** Configuration for a Runnable. */
/**
* Configuration for a `Runnable`.
*
* See the
* [reference docs](https://reference.langchain.com/python/langchain_core/runnables/#langchain_core.runnables.RunnableConfig)
* for more details.
*/
class RunnableConfig
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
private constructor(