mirror of
https://github.com/langchain-ai/langsmith-java.git
synced 2026-08-26 18:17:05 -04:00
feat(api): api update
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
+24
-4
@@ -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))
|
||||
|
||||
/**
|
||||
|
||||
+24
-4
@@ -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))
|
||||
|
||||
/**
|
||||
|
||||
+7
-1
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user